forked from aws-samples/eb-php-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (37 loc) · 1.16 KB
/
variables.tf
File metadata and controls
47 lines (37 loc) · 1.16 KB
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
variable "aws_region" {
description = "EC2 Region"
default = "us-east-2"
}
variable "aws_access_key" {
description = "AWS Access Key; required by Terraform to create/destroy the resources"
}
variable "aws_secret_key" {
description = "AWS Secret Key; required by Terraform to create/destroy the resources"
}
variable "project_name" {
description = "Name of the project (lowercase bc S3 doesn't like uppercase)"
default = "my-project"
}
variable "project_version" {
description = "Application Version (Elastic Beanstalk); env. var. exported from build.sh script"
}
variable "project_source" {
description = "Application Source (Elastic Beanstalk); env. var. exported from build.sh script"
}
variable "bucket_name" {
description = "S3 Bucket to store Application Source (Elastic Beanstalk) and other Application data (i.e., Data Lake for Analytics)"
}
variable "rds_name" {
description = "Name of the RDS DB"
default = "ebdb"
}
variable "rds_port" {
description = "Port of the RDS DB"
default = "5432"
}
variable "rds_username" {
description = "Username of the RDS DB"
}
variable "rds_password" {
description = "Password of the RDS DB"
}