-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathvariables.tf
39 lines (32 loc) · 1003 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
variable "cluster_name" {
type = string
description = "The cluster's name for which shared resources are created. It is used for the hosted zone domain."
}
variable "name_prefix" {
type = string
description = "The prefix applied to all AWS creations."
}
variable "target_aws_account" {
type = string
description = "The AWS account number where the cluster is created."
}
variable "installer_role_arn" {
type = string
description = "Installer ARN from target account."
}
variable "ingress_operator_role_arn" {
type = string
description = "Ingress Operator ARN from target account."
}
variable "subnets" {
type = list(string)
description = "The list of the subnets that must be shared between the accounts."
}
variable "hosted_zone_base_domain" {
type = string
description = "The base domain that must be used for hosted zone creation."
}
variable "vpc_id" {
type = string
description = "The Shared VPC ID."
}