cae74bae782d3a94282a30d343e13794424c8b30
[csit.git] / fdio.infra.terraform / terraform-aws-subnet / variables.tf
1 variable "tags_name" {
2   description = "Name used for tag."
3   type        = string
4   default     = ""
5 }
6
7 variable "tags_environment" {
8   description = "Environment used for tag."
9   type        = string
10   default     = ""
11 }
12
13 # Variables for Subnet
14 variable "subnet_assign_ipv6_address_on_creation" {
15   description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address."
16   type        = bool
17   default     = false
18 }
19
20 variable "subnet_availability_zone" {
21   description = "AZ for the subnet."
22   type        = string
23   default     = "us-east-1a"
24 }
25
26 variable "subnet_cidr_block" {
27   description = "The IPv4 CIDR block for the subnet."
28   type        = string
29 }
30
31 variable "subnet_ipv6_cidr_block" {
32   description = "The IPv6 network range for the subnet, in CIDR notation."
33   type        = string
34 }
35
36 variable "subnet_map_public_ip_on_launch" {
37   description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address."
38   type        = bool
39   default     = false
40 }
41
42 variable "subnet_vpc_id" {
43   description = "The VPC ID."
44   type        = string
45 }