-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
35 lines (32 loc) · 952 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
variable "aws_iam_username" {}
variable "access_key" {}
variable "secret_key" {}
variable "region" {
default = "us-west-2"
}
variable "instance_type" {}
variable "ami" {}
variable "private_ssh_key_path" {}
variable "key_name" {}
variable "chef-server-user" {}
variable "chef-server-user-full-name" {}
variable "chef-server-user-email" {}
variable "chef-server-user-password" {}
variable "chef-server-org-name" {}
variable "chef-server-org-full-name" {}
variable "db_allocated_storage" {}
variable "db_engine" {}
variable "db_engine_version" {}
variable "db_instance_class" {}
variable "db_identifier" {}
variable "db_name" {}
variable "db_username" {}
variable "db_password" {}
variable "bucket_name" {}
variable "bucket_acl" {}
variable "cache_cluster_name" {}
variable "cache_cluster_engine" {}
variable "cache_cluster_node_type" {}
variable "cache_cluster_port" {}
variable "cache_cluster_num_nodes" {}
variable "cache_parameter_group_name" {}