generated from dod-iac/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
40 lines (34 loc) · 1.04 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
variable "assume_role_policy" {
type = string
description = "The assume role policy for the AWS IAM role. If blank, allows SageMaker resources in the account to assume the role."
default = ""
}
variable "description" {
type = string
description = "The description of the AWS IAM role."
default = ""
}
variable "keys" {
type = list(string)
description = "The ARNs of the AWS KMS keys the role is allowed to use to decrypt files. Use [\"*\"] to allow all keys."
default = []
}
variable "policy_description" {
type = string
description = "The description of the AWS IAM policy. Defaults to \"The policy for [NAME]\"."
default = ""
}
variable "policy_name" {
type = string
description = "The name of the AWS IAM policy. Defaults to \"[NAME]-policy\"."
default = ""
}
variable "name" {
type = string
description = "The name of the AWS IAM role."
}
variable "tags" {
type = map(string)
description = "Tags applied to the AWS IAM role."
default = {}
}