Skip to content

Commit

Permalink
Merge pull request #20 from rackspace-infrastructure-automation/0.13_…
Browse files Browse the repository at this point in the history
…updates

CI Updates + Test fixes
  • Loading branch information
cwgem authored Nov 20, 2020
2 parents aa45eba + 1bfaa30 commit 1da6701
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.17
0.13.2
2 changes: 1 addition & 1 deletion tests/client/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
}

provider "aws" {
version = "~> 2.7"
version = "~> 3.0"
region = "us-west-2"
}

Expand Down
10 changes: 5 additions & 5 deletions tests/test1/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ terraform {
}

provider "aws" {
version = "~> 2.7"
version = "~> 3.0"
region = "us-east-1"
}

provider "aws" {
alias = "oregon"
region = "us-west-2"
version = "~> 2.7"
version = "~> 3.0"
}

module "vpc" {
Expand Down Expand Up @@ -84,7 +84,7 @@ module "vpn3" {
customer_ip = "1.2.3.6"
existing_vpn_gateway = module.vpn1.vpn_gateway
name = "StaticRoutingVPN-PSK"
preshared_keys = [random_string.presharedkey1.result]
preshared_keys = ["pkey${random_string.presharedkey1.result}"]
route_tables_count = 3
static_routes = ["192.168.12.0/23", "192.168.16.0/23"]
static_routes_count = 2
Expand Down Expand Up @@ -133,7 +133,7 @@ module "vpn5" {
disable_bgp = false
existing_vpn_gateway = module.vpn1.vpn_gateway
name = "DynamicRoutingVPN-PSK-ICIDR"
preshared_keys = [random_string.presharedkey1.result]
preshared_keys = ["pkey${random_string.presharedkey1.result}"]
route_tables_count = 3
vpc_id = module.vpc.vpc_id

Expand Down Expand Up @@ -178,7 +178,7 @@ module "vpn7" {
customer_ip = "1.2.3.10"
existing_vpn_gateway = module.vpn1.vpn_gateway
name = "StaticRoutingVPN-PSK-ICIDR"
preshared_keys = [random_string.presharedkey1.result]
preshared_keys = ["pkey${random_string.presharedkey1.result}"]
route_tables_count = 3
static_routes = ["192.168.18.0/23", "192.168.20.0/23"]
static_routes_count = 2
Expand Down

0 comments on commit 1da6701

Please sign in to comment.