-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
102 lines (81 loc) · 2.45 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
##############################################################################
# Variables File
#
# Here is where we store the default values for all the variables used in our
# Terraform code. If you create a variable with no default, the user will be
# prompted to enter it (or define it via config file or command line flags.)
variable "environment" {
description = "This environment will be included in the name of most resources."
}
variable "vpc_cidr" {
description = "CIDR block of the vpc"
}
variable "public_subnets_cidr" {
type = list(any)
description = "CIDR block for Public Subnet"
}
variable "private_subnets_cidr" {
type = list(any)
description = "CIDR block for Private Subnet"
}
variable "public_subnets_dhcp_cidr" {
type = list(any)
description = "CIDR block for DHCP on Public Subnet"
}
variable "private_subnets_dhcp_cidr" {
type = list(any)
description = "CIDR block for DHCP on Private Subnet"
}
variable "region" {
description = "Region for the VPC"
}
variable "instance_type" {
description = "Specifies the AWS instance type."
}
variable "ssh_public_key" {
description = "SSH Public Key"
}
variable "cloud_provider" {
description = "Cloud Provider (aws/azure)"
}
variable "hvn_cidr" {
description = "HVN CIDR Range"
}
variable "home_cidr" {
description = "Home Network CIDR Range"
}
variable "hcp_vault_tier" {
description = "HCP Vault Tier"
}
variable "wg_server_private_key" {
description = "Wireguard Server Private Key"
}
variable "wg_client_public_key" {
description = "Wireguard Server Private Key"
}
variable "wg_client_ip" {
description = "Wireguard Client IP"
}
variable "route53_hosted_zone_id" {
description = "Route53 Hosted Zone ID"
}
variable "route53_domain_name" {
description = "Route53 Domain (ex: hashicorp.com)"
}
variable "wg_server_net" {
description = "Wireguard Server CIDR (.1 with the netmask)"
}
variable "pgp_key" {
description = "PGP Key Parameter for IAM User Credential Creation"
}
# see https://registry.terraform.io/providers/hashicorp/hcp/latest/docs/resources/boundary_cluster#username
variable "hcp_boundary_admin_username" {
type = string
description = "HCP Boundary Cluster Admin Username."
}
# see https://registry.terraform.io/providers/hashicorp/hcp/latest/docs/resources/boundary_cluster#password
variable "hcp_boundary_admin_password" {
type = string
description = "HCP Boundary Cluster Admin Password."
sensitive = true
}