-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
variables.tf
51 lines (42 loc) · 1.49 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
variable "aws_service" {
description = "The AWS service principal to which this role is attached. For example: `elasticbeanstalk.amazonaws.com`."
type = string
}
variable "custom_suffix" {
description = "Additional string appended to the role name. Not all AWS services support custom suffixes."
type = string
default = null
}
variable "description" {
description = "The description of the role."
type = string
default = ""
}
variable "tags" {
description = "A map of tags to add to all resources."
type = map(string)
default = {}
}
variable "module_tags_enabled" {
description = "Whether to create AWS Resource Tags for the module informations."
type = bool
default = true
}
###################################################
# Resource Group
###################################################
variable "resource_group_enabled" {
description = "Whether to create Resource Group to find and group AWS resources which are created by this module."
type = bool
default = true
}
variable "resource_group_name" {
description = "The name of Resource Group. A Resource Group name can have a maximum of 127 characters, including letters, numbers, hyphens, dots, and underscores. The name cannot start with `AWS` or `aws`."
type = string
default = ""
}
variable "resource_group_description" {
description = "The description of Resource Group."
type = string
default = "Managed by Terraform."
}