-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
56 lines (56 loc) · 1.16 KB
/
vars.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
variable "AWS_REGION" {
default = "us-west-2"
}
variable "PATH_TO_PRIVATE_KEY" {
default = "mykey"
}
variable "PATH_TO_PUBLIC_KEY" {
default = "mykey.pub"
}
variable "chef_server_name" {
default = "chef-server-nvpc"
}
variable "automate_server_name" {
default = "chef-automate-nvpc"
}
variable "runner_name_1" {
default = "runner_1_nvpc"
}
variable "runner_name_2" {
default = "runner_2_nvpc"
}
variable "s3_bucket_name" {
default = "chef-automate-novpc"
}
variable "aws_iam_role" {
default = "tr_s3_iam_role"
}
variable "aws_iam_instance_profile" {
default = "tr_s3_instance_profile"
}
variable "aws_iam_role_policy" {
default = "tr_s3_iam_role_policy"
}
variable "private_subnet_id_1" {
default = "subnet-043e4110716c37850"
}
variable "private_subnet_id_2" {
default = "subnet-043e4110716c37850"
}
variable "public_subnet_id_1" {
default = "subnet-043e4110716c37850"
}
variable "public_subnet_id_2" {
default = "subnet-043e4110716c37850"
}
variable "vpc_security_group_ids" {
default = "sg-04f8f6c4122d58779"
}
variable "AMIS" {
type = "map"
default = {
us-east-1 = "ami-e251209a"
us-west-2 = "ami-e251209a"
us-west-1 = "ami-e251209a"
}
}