-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
83 lines (70 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
variable "deploy_eks_cluster" {
type = string
description = "Choose if you want an eks cluster to be provisioned"
default = true
}
variable "eks_cluster_version" {
description = "The version of your EKS cluster"
default = "1.21"
}
variable "cluster_id" {
type = string
description = "The name of your EKS cluster"
default = "hcp-eks"
}
variable "vpc_region" {
type = string
description = "The AWS region to create resources in"
default = "us-west-2"
}
variable "eks_instance_types" {
type = list(any)
description = "The node size of your EKS cluster"
#default = ["t3a.medium"]
default = ["t2.small"]
}
variable "deploy_hvn" {
type = string
description = "Choose to deploy HCP HVP or use an existing one"
default = false
}
variable "hvn_id" {
type = string
description = "The name of your existing HCP HVN"
default = "PUT-YOUR-HVN-NAME-HERE"
}
variable "hvn_cidr_block" {
type = string
description = "The CIDR range to create the HCP HVN with"
default = "172.25.32.0/20"
}
variable "hvn_region" {
type = string
description = "The HCP region to create resources in"
default = "us-west-2"
}
variable "deploy_vault_cluster" {
type = string
description = "Choose to deploy HCP Vault Cluster"
default = false
}
variable "make_vault_public" {
type = string
description = "Choose if you want your Vault cluster to have a public address"
default = false
}
variable "hcp_vault_cluster_id" {
type = string
description = "The name of your HCP Vault cluster"
default = "hcp-vault"
}
variable "vault_internal_addr" {
type = string
description = "The internal url of your HCP vault cluster"
default = "https://MyVault.private.vault.f4cfade2-df28-47f2-a365-56gb2a62d8c5.aws.hashicorp.cloud:8200"
}
variable "vault_tier" {
type = string
description = "The HCP Vault tier to use when creating a Vault cluster"
default = "development"
}