-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvariable.tf
More file actions
35 lines (35 loc) · 883 Bytes
/
variable.tf
File metadata and controls
35 lines (35 loc) · 883 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
32
33
34
35
### variable.tf
variable "aws_region" {
description = "AWS region on which we will setup the rabbitmq cluster"
default = "eu-central-1"
}
variable "access_key" {
default = ""
description = "the user aws access key"
}
variable "secret_key" {
default = ""
description = "the user aws secret key"
}
variable "aws_amis" {
description = "Ubuntu 18.04 Base AMI to launch the instances"
default = {
eu-central-1 = "ami-0cc0a36f626a4fdf5"
}
}
variable "instance_type" {
description = "Instance type"
default = "t2.micro"
}
variable "key_path" {
description = "SSH Public Key path"
default = "/home/ratul/Desktop/vagrant/rabbit-cluster/main.pem"
}
variable "key_name" {
description = "Desired name of Keypair..."
default = "main"
}
variable "bootstrap_path" {
description = "Script to install Docker Engine"
default = "install_docker_machine_compose.sh"
}