You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,7 @@ No modules.
224
224
| <aname="input_iam_role_use_name_prefix"></a> [iam\_role\_use\_name\_prefix](#input\_iam\_role\_use\_name\_prefix)| Determines whether the IAM role name (`iam_role_name` or `name`) is used as a prefix |`bool`|`true`| no |
225
225
| <aname="input_ignore_ami_changes"></a> [ignore\_ami\_changes](#input\_ignore\_ami\_changes)| Whether changes to the AMI ID changes should be ignored by Terraform. Note - changing this value will result in the replacement of the instance |`bool`|`false`| no |
226
226
| <aname="input_instance_initiated_shutdown_behavior"></a> [instance\_initiated\_shutdown\_behavior](#input\_instance\_initiated\_shutdown\_behavior)| Shutdown behavior for the instance. Amazon defaults this to stop for EBS-backed instances and terminate for instance-store instances. Cannot be set on instance-store instance |`string`|`null`| no |
227
+
| <aname="input_instance_tags"></a> [instance\_tags](#input\_instance\_tags)| Additional tags for the instance |`map(string)`|`{}`| no |
227
228
| <aname="input_instance_type"></a> [instance\_type](#input\_instance\_type)| The type of instance to start |`string`|`"t3.micro"`| no |
228
229
| <aname="input_ipv6_address_count"></a> [ipv6\_address\_count](#input\_ipv6\_address\_count)| A number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet |`number`|`null`| no |
229
230
| <aname="input_ipv6_addresses"></a> [ipv6\_addresses](#input\_ipv6\_addresses)| Specify one or more IPv6 addresses from the range of the subnet to associate with the primary network interface |`list(string)`|`null`| no |
Copy file name to clipboardexpand all lines: variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,12 @@ variable "instance_type" {
124
124
default="t3.micro"
125
125
}
126
126
127
+
variable"instance_tags" {
128
+
description="Additional tags for the instance"
129
+
type=map(string)
130
+
default={}
131
+
}
132
+
127
133
variable"ipv6_address_count" {
128
134
description="A number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet"
0 commit comments