feat(terraform): AWS Subnet
[csit.git] / fdio.infra.terraform / terraform-aws-subnet / variables.tf
diff --git a/fdio.infra.terraform/terraform-aws-subnet/variables.tf b/fdio.infra.terraform/terraform-aws-subnet/variables.tf
new file mode 100644 (file)
index 0000000..cae74ba
--- /dev/null
@@ -0,0 +1,45 @@
+variable "tags_name" {
+  description = "Name used for tag."
+  type        = string
+  default     = ""
+}
+
+variable "tags_environment" {
+  description = "Environment used for tag."
+  type        = string
+  default     = ""
+}
+
+# Variables for Subnet
+variable "subnet_assign_ipv6_address_on_creation" {
+  description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address."
+  type        = bool
+  default     = false
+}
+
+variable "subnet_availability_zone" {
+  description = "AZ for the subnet."
+  type        = string
+  default     = "us-east-1a"
+}
+
+variable "subnet_cidr_block" {
+  description = "The IPv4 CIDR block for the subnet."
+  type        = string
+}
+
+variable "subnet_ipv6_cidr_block" {
+  description = "The IPv6 network range for the subnet, in CIDR notation."
+  type        = string
+}
+
+variable "subnet_map_public_ip_on_launch" {
+  description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address."
+  type        = bool
+  default     = false
+}
+
+variable "subnet_vpc_id" {
+  description = "The VPC ID."
+  type        = string
+}