-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
44 lines (37 loc) · 1001 Bytes
/
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
variable "ibmcloud_api_key" {
description = "API key that is associated with the account to provision resources to"
type = string
sensitive = true
}
variable "prefix" {
description = "The prefix to append to your resources"
type = string
}
variable "transit_gateway_name" {
description = "Name of the transit gateway"
type = string
}
variable "region" {
description = "Location of the transit gateway."
type = string
}
variable "resource_group" {
type = string
description = "An existing resource group name to use for this example. If not set, a new resource group is created."
default = null
}
variable "resource_tags" {
type = list(string)
description = "List of tags"
default = null
}
variable "vpc1_name" {
type = string
description = "Name of the first VPC"
default = "vpc1"
}
variable "vpc2_name" {
type = string
description = "Name of the second VPC"
default = "vpc2"
}