-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathvariables.tf
60 lines (46 loc) · 1.25 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
variable "name" {}
variable "tags" {
type = "map"
default = {}
description = "A map of tags to add to all resources"
}
variable "ami_name_pattern" {
default = "ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-*"
description = "The name filter to use in data.aws_ami"
}
variable "ami_publisher" {
default = "099720109477" # Canonical
description = "The AWS account ID of the AMI publisher"
}
variable "instance_type" {}
variable "instance_count" {}
variable "az_list" {
type = "list"
}
variable "public_subnet_ids" {
type = "list"
}
variable "private_subnet_ids" {
type = "list"
}
variable "subnets_count" {
description = "The number of subnets in public_subnet_ids. Required because of hashicorp/terraform#1497"
}
variable "vpc_security_group_ids" {
type = "list"
}
variable "aws_key_name" {}
variable "aws_private_key" {}
variable "ssh_bastion_host" {
default = ""
}
variable "ssh_bastion_user" {
default = ""
}
variable "awsnycast_deb_url" {
default = "https://github.com/bobtfish/AWSnycast/releases/download/v0.1.5/awsnycast_0.1.5-425_amd64.deb"
}
variable "route_table_identifier" {
description = "Indentifier used by AWSnycast route table regexp"
default = "rt-private"
}