-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (60 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
variable "enabled" {
type = bool
default = true
description = "Set to false to prevent the module from creating or accessing any resources"
}
variable "namespace" {
description = "Namespace (e.g. `eg` or `cp`)"
type = string
}
variable "stage" {
description = "Stage (e.g. `prod`, `dev`, `staging`)"
type = string
}
variable "name" {
description = "Name (e.g. `app` or `cluster`)"
type = string
}
variable "delimiter" {
type = string
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name`, and `attributes`"
}
variable "attributes" {
type = list(string)
default = []
description = "Additional attributes (e.g. `a` or `b`)"
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. `{\"BusinessUnit\" = \"XYZ\"`)"
}
variable "auto_accept" {
type = bool
default = true
description = "Automatically accept the peering"
}
variable "accepter_aws_assume_role_arn" {
description = "Accepter AWS Assume Role ARN"
type = string
}
variable "accepter_region" {
type = string
description = "Accepter AWS region"
}
variable "accepter_vpc_id" {
type = string
description = "Accepter VPC ID filter"
default = ""
}
variable "accepter_vpc_tags" {
type = map(string)
description = "Accepter VPC Tags filter"
default = {}
}
variable "accepter_allow_remote_vpc_dns_resolution" {
type = bool
default = true
description = "Allow accepter VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the requester VPC"
}