-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
72 lines (60 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
variable "admin_principals" {
description = "Principals allowed to peform admin actions (default: current account)"
type = list(string)
default = null
}
variable "auth_token_secret_arn" {
type = string
description = "ARN of a SecretsManager secret containing a Sentry auth token"
default = null
}
variable "auth_token_secret_name" {
type = string
description = "Name of a SecretsManager secret containing a Sentry auth token"
default = "sentry-auth-token"
}
variable "auth_token_secret_key" {
type = string
description = "Key within secret at which the auth token ca be accessed"
default = "SENTRY_AUTH_TOKEN"
}
variable "auth_token_kms_key_id" {
type = string
description = "ID of the KMS key used to encrypt the auth token"
default = "alias/sentry-auth-token"
}
variable "name" {
type = string
description = "Name for the Sentry client key"
}
variable "organization_slug" {
type = string
description = "Slug for the Sentry organization in which the project exists"
}
variable "project_slug" {
type = string
description = "Slug for the Sentry project for which a key should be created"
}
variable "read_principals" {
description = "Principals allowed to read the secret (default: current account)"
type = list(string)
default = null
}
variable "tags" {
description = "Tags which should be applied to created resources"
default = {}
type = map(string)
}
variable "trust_tags" {
description = "Tags required on principals accessing the secret"
type = map(string)
default = {}
}
variable "subnet_ids" {
description = "Subnets in which the rotation function should run"
type = list(string)
}
variable "vpc_id" {
description = "VPC in which the rotation function should run"
type = string
}