forked from Flaconi/terraform-aws-iam-ses-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 1.2 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
variable "enabled" {
description = "Set to false to prevent the module from creating any resources"
type = bool
default = true
}
variable "user_name" {
type = string
description = "Name of the IAM user"
}
variable "user_policy_name_prefix" {
type = string
description = "Name prefix of the IAM policy that is assigned to the user"
default = "SESSendOnlyAccess"
}
variable "path" {
type = string
description = "Path in which to create the user"
default = "/"
}
variable "permissions_boundary" {
type = string
description = "The ARN of the policy that is used to set the permissions boundary for the user"
default = ""
}
variable "force_destroy" {
type = string
description = "Use this to be able to also delete IAM users that were not created with Terraform and have IAM access keys, MFA devices, etc."
default = "false"
}
variable "tags" {
type = map(string)
description = "Map holding the resource tags in a key-value format"
}
variable "pgp_key" {
type = string
description = "Either a base-64 encoded PGP public key, or a keybase username in the form keybase:some_person_that_exists"
default = ""
}