Skip to content

Commit

Permalink
Updates tests for compatibility with latest terraform provider
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon committed Nov 10, 2024
1 parent 38385e3 commit c20cf23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/cross_account/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module "share" {
}

module "vpc" {
source = "github.com/terraform-aws-modules/terraform-aws-vpc?ref=v3.16.1"
source = "github.com/terraform-aws-modules/terraform-aws-vpc?ref=v5.15.0"

name = "tardigrade-ram-${random_string.this.result}"
cidr = "10.0.0.0/16"
Expand Down Expand Up @@ -90,7 +90,7 @@ resource "random_string" "this" {
length = 6
upper = false
special = false
number = false
numeric = false
}

output "share" {
Expand Down
4 changes: 2 additions & 2 deletions tests/share/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module "share" {
}

module "vpc" {
source = "github.com/terraform-aws-modules/terraform-aws-vpc?ref=v3.16.1"
source = "github.com/terraform-aws-modules/terraform-aws-vpc?ref=v5.15.0"

name = "tardigrade-ram-${random_string.this.result}"
cidr = "10.0.0.0/16"
Expand Down Expand Up @@ -71,7 +71,7 @@ resource "random_string" "this" {
length = 6
upper = false
special = false
number = false
numeric = false
}

output "share" {
Expand Down

0 comments on commit c20cf23

Please sign in to comment.