-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
70 lines (54 loc) · 1.39 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
61
62
63
64
65
66
67
68
69
70
variable "region" {
default = "us-west-2"
}
variable "ssh_user" {
description = "The user to ssh as"
}
variable "ami" {
description = "Base AMI for all nodes"
default = {
us-west-2 = "ami-746aba14"
}
}
variable "instance_type" {
default = "t2.medium"
}
variable "subnet_id" {
description = "The EC2 subnet ID to create the chef server in"
}
variable "vpc_security_group_ids" {
description = "A list of security group IDs"
}
variable "private_ssh_key_path" {
description = "The path to your ssh key"
}
variable "key_name" {
description = "The name of your AWS key pair"
}
variable "chef_server_version" {
description = "The version of Chef Server to install"
default = "12.9.1"
}
variable "chef_server_user" {
description = "The account name of the chef admin user"
}
variable "chef_server_user_full_name" {
description = "The full name of the chef admin user"
}
variable "chef_server_user_email" {
description = "The email of the chef admin user"
}
variable "chef_server_user_password" {
description = "The password of the chef admin user"
}
variable "chef_server_org_name" {
description = "The name of the chef organization"
}
variable "chef_server_org_full_name" {
description = "The display name of the chef organization"
}
variable "chef_server_addons" {
description = "A comma separated string of chef server addons"
type = "map"
default = {}
}