diff --git a/nacls/README.md b/nacls/README.md index c35fb52..245d325 100644 --- a/nacls/README.md +++ b/nacls/README.md @@ -67,6 +67,7 @@ No modules. |------|-------------|------|---------|:--------:| | [account\_alias](#input\_account\_alias) | AWS Account Alias (default: will pull from current account\_alias) | `string` | `""` | no | | [account\_id](#input\_account\_id) | AWS Account ID (default: will pull from current user) | `string` | `""` | no | +| [attachment\_subnet\_ids](#input\_attachment\_subnet\_ids) | List of attachment subnet IDs (not objects) | `list(string)` | `[]` | no | | [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no | | [private\_subnet\_ids](#input\_private\_subnet\_ids) | List of private subnet IDs (not objects) | `list(string)` | `[]` | no | | [private\_subnets\_ids](#input\_private\_subnets\_ids) | List of private subnet objects including: subnet, label, availability\_zone, id |
list(object({
subnet = string
label = string
availability_zone = string
id = string
})) | `[]` | no |
diff --git a/nacls/variables.tf b/nacls/variables.tf
index 15ab89b..601fc2f 100644
--- a/nacls/variables.tf
+++ b/nacls/variables.tf
@@ -9,3 +9,9 @@ variable "private_subnet_ids" {
type = list(string)
default = []
}
+
+variable "attachment_subnet_ids" {
+ description = "List of attachment subnet IDs (not objects)"
+ type = list(string)
+ default = []
+}