generated from cloud-native-toolkit/template-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
48 lines (39 loc) · 1.25 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "name" {
type = string
description = "The name of the NGW instance"
default = ""
}
variable "name_prefix"{
type = string
description = "Prefix to be added to the names of resources which are being provisioned"
default = "swe"
}
variable "resource_group_name" {
type = string
description = "The name of the resource group where the VPC is deployed. On AWS this value becomes a tag."
default = "default"
}
variable "provision" {
type = bool
description = "Flag to determine whether to provision Internet gateway or not. Defautl set to true"
default = true
}
variable "_count" {
type = number
description = "Number of resources to be provisioned"
default = 0
}
variable "connectivity_type" {
type = string
description = "(Optional) Connectivity type for the gateway. Valid values are private and public. Defaults to public."
default = "public"
}
variable "allocation_id" {
type = string
description = "(Optional) The Allocation ID of the Elastic IP address for the gateway. Required for connectivity_type of public"
default = ""
}
variable "subnet_ids" {
type = list(string)
description = "(Required) The Subnet ID of the subnet in which to place the gateway."
}