Merge pull request #1329 from snyk/fix/acc-test-vpc-link

fix: assign a specific az while creating subnets
main
William BEUIL 2022-01-24 10:43:57 +01:00 committed by GitHub
commit cdd58bf2fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ resource "aws_vpc" "vpc" {
resource "aws_subnet" "subnet" {
vpc_id = aws_vpc.vpc.id
cidr_block = "10.100.0.0/24"
availability_zone_id = "use1-az1"
}
resource "aws_security_group" "foo" {