-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (32 loc) · 1007 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 "region" {
description = "The AWS region where the infrastructure will be provisioned"
type = string
}
variable "vpc_cidr_block" {
description = "The cidr block of the VPC"
type = string
}
variable "protected_subnet_cidr_block" {
description = "The cidr block of the private subnet"
type = string
}
variable "firewall_subnet_cidr_block" {
description = "The cidr block of the public subnet"
type = string
}
variable "credentials_location" {
description = "The location in your local machine of the aws_access_key_id and aws_secret_access_key"
type = string
}
variable "web_server_ip_address" {
description = "The IP address of the 2nd worker node of the k8s cluster."
type = string
}
variable "web_server_instance_type" {
description = "The instance type of the master node"
type = string
}
variable "key_name" {
description = "Key name of the key pair used to connect to EC2 instances"
type = string
}