-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
31 lines (24 loc) · 857 Bytes
/
variables.tf
File metadata and controls
31 lines (24 loc) · 857 Bytes
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
// VPC ID
variable "vpc_id" { default = "" }
variable "private_vpc_cidr" {default = "" }
// Rhcos AMI ID
variable "rhcos_ami" { default = "" }
// Cluster name "sparta"
variable "cluster_name" { default = "" }
// Domain name, "example.com"
variable "cluster_domain" { default = "" }
// Private subnet List
variable "subnet_list" {
description = "AWS Private Subnets"
type = list(string)
default = ["" , "" , "" ]
}
// Default ec2 properties per RedHat offical minimum requirements
variable "ec2_type" { default = "m5.xlarge" }
variable "volume_size" { default = "120" }
variable "default_tags" { default = {} }
variable "master_count" { default = "3" }
// Leave empty, secrets are configured via the setup ansible tasks
variable "aws_access_key" { default = "" }
variable "aws_secret_key" { default = "" }
variable "aws_region" { default = "" }