-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (34 loc) · 855 Bytes
/
variables.tf
File metadata and controls
40 lines (34 loc) · 855 Bytes
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 "namespace" {
description = "Namespace for resource naming"
type = string
default = "ex"
}
variable "environment" {
description = "Environment name"
type = string
default = "prod"
}
variable "stage" {
description = "Stage name"
type = string
default = ""
}
variable "slack_bot_token" {
description = "Slack bot token (requires chat:write scope)"
type = string
sensitive = true
}
variable "slack_channel_id" {
description = "Slack channel ID (e.g., C000XXXXXXX)"
type = string
}
variable "aws_access_portal_url" {
description = "AWS SSO/Identity Center access portal URL"
type = string
default = ""
}
variable "aws_access_role_name" {
description = "IAM role name for federated access"
type = string
default = "SecurityAuditor"
}