-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (45 loc) · 915 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
variable "vpc_cider_block" {
description = "VPC cider block"
type = string
}
variable "subnet_cider_block" {
description = "subnet cider block"
type = string
}
variable "availability_zone" {
description = "availability zone"
type = string
}
variable "env_prefix" {
description = "deployment environment"
default = "test"
type = string
}
variable "my_ip" {
description = "my IP address"
type = string
}
variable "instance_type" {
description = "EC2 instance type"
type = string
}
variable "app_name" {
description = "application name"
type = string
}
variable "image_name" {
description = "image name"
type = string
}
variable "ssh_key_private" {
description = "ssh private key path"
type = string
}
variable "ssh_key_public" {
description = "ssh public key path"
type = string
}
variable "ansible_path" {
description = "ansible directory path"
type = string
}