diff --git a/README.md b/README.md index f199579..f80500a 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ No modules. | [subnet\_names](#input\_subnet\_names) | A list of public subnets inside the vNet. | `list(string)` |
[| no | | [subnet\_prefixes](#input\_subnet\_prefixes) | The address prefix to use for the subnet. | `list(string)` |
"subnet1",
"subnet2",
"subnet3"
]
[| no | | [subnet\_service\_endpoints](#input\_subnet\_service\_endpoints) | A map of subnet name to service endpoints to add to the subnet. | `map(any)` | `{}` | no | -| [tags](#input\_tags) | The tags to associate with your network and subnets. | `map(string)` |
"10.0.1.0/24",
"10.0.2.0/24",
"10.0.3.0/24"
]
{| no | +| [tags](#input\_tags) | The tags to associate with your network and subnets. | `map(string)` | `{}` | no | | [tracing\_tags\_enabled](#input\_tracing\_tags\_enabled) | Whether enable tracing tags that generated by BridgeCrew Yor. | `bool` | `false` | no | | [tracing\_tags\_prefix](#input\_tracing\_tags\_prefix) | Default prefix for generated tracing tags | `string` | `"avm_"` | no | | [use\_for\_each](#input\_use\_for\_each) | Use `for_each` instead of `count` to create multiple resource instances. | `bool` | n/a | yes | diff --git a/variables.tf b/variables.tf index 0c90696..e5ed97c 100644 --- a/variables.tf +++ b/variables.tf @@ -94,10 +94,8 @@ variable "subnet_service_endpoints" { } variable "tags" { - type = map(string) - default = { - ENV = "test" - } + type = map(string) + default = {} description = "The tags to associate with your network and subnets." }
"ENV": "test"
}