Merge branch 'master' into fast-dev-dp

This commit is contained in:
Ludovico Magnocavallo 2022-02-14 07:22:51 +00:00 committed by GitHub
commit 310c933d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ module "private-dns" {
domain = "test.example."
client_networks = [var.vpc.self_link]
recordsets = {
"A localhost" = { type = "A", ttl = 300, records = ["127.0.0.1"] }
"A localhost" = { ttl = 300, records = ["127.0.0.1"] }
}
}
# tftest modules=1 resources=2

View File

@ -15,7 +15,7 @@ By default, the module is configured to use an existing policy, passed in by nam
```hcl
module "test" {
source = "./modules/vpc-sc"
access_policy = "accessPolicies/12345678"
access_policy = "12345678"
}
# tftest modules=0 resources=0
```