Commit 8139497
committed
feat: Support defining tags per subnet name
This commit updates the module to support defining subnet tags per subnet name, in addition to per AZ.
Reasoning behind this is to allow for specific tags to be applied to different public/private subnets.
E.g.
```terraform
private_subnet_names = ["Private Subnet One", "Private Subnet Two"]
private_subnet_tags_per_name = {
"Private Subnet One" = {
"subnet one" = "true"
},
"Private Subnet Two" = {
"subnet two" = "true"
}
}
```1 parent 961c9b5 commit 8139497
4 files changed
+44
-20
lines changed
0 commit comments