-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
59 lines (52 loc) · 1.38 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
# Variable for aws_elastic_beanstalk_application
variable "eb_app_name" {
description = "Name of the EB application"
default = "NULL"
}
# Variables for aws_elastic_beanstalk_application_version
variable "eb_app_version_name" {
description = "Name of the EB application version"
default = "NULL"
}
variable "application" {
description = "Application argument value"
default = "NULL"
}
# Variables for aws_elastic_beanstalk_environment
variable "eb_env_name" {
description = "Name of the EB environment"
default = "NULL"
}
variable "platform" {
description = "Defines the platform to be used to deploy the application"
default = "NULL"
}
# Variable for aws_S3_bucket
variable "bucket_prefix" {
description = "Prefix for the bucket name"
default = "NULL"
}
# Variables for aws_s3_object
variable "key_file" {
description = "Key argument value"
default = "NULL"
}
variable "source_file" {
description = "Source argument value"
default = "NULL"
}
# Variable for aws_iam_role
variable "role_name" {
description = "Name of the IAM role"
default = "NULL"
}
# Variable for aws_iam_role_policy_attachment
variable "policy" {
description = "Attach policy to the IAM role"
default = "NULL"
}
# Variable for aws_iam_instance_profile
variable "profile_name" {
description = "Name of the IAM instance profile"
default = "NULL"
}