-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (28 loc) · 987 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
variable "source_vpc_no" {
description = "(Required) The ID of VPC from which the request is sent."
type = string
}
variable "target_vpc_no" {
description = "(Required) The ID of VPC to receive requests."
type = string
}
variable "target_vpc_name" {
description = "(Optional) The name of the VPC that receives the request."
type = string
default = null
}
variable "target_vpc_login_id" {
description = "(Optional) VPC Owner ID to receive requests (If the account receiving the request is different from the account you send, you must enter the account receiving the request. Must match E-mail format)."
type = string
default = null
}
variable "name" {
description = "(Optional) The name to create. If omitted, Terraform will assign a random, unique name."
type = string
default = null
}
variable "description" {
description = "(Optional) description to create."
type = string
default = null
}