-
Notifications
You must be signed in to change notification settings - Fork 25
/
vars.tf
43 lines (37 loc) · 1.48 KB
/
vars.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
## =============================================================================
# Variables - Authentication #
## =============================================================================
variable "aws_region" {
type = string
description = "Default region for root module"
}
## =============================================================================
# Variables - Naming #
## =============================================================================
variable "aws_root_name" {
type = string
description = "Root name prefix to use in resource name tags"
}
variable "aws_region_name" {
type = string
description = "Region name suffix to use in resource name tags"
}
variable "aws_environment_name" {
type = string
description = "Environment name to use in resource name tags"
}
variable "aws_source_name" {
type = string
description = "Source name of the tool that constructed the resource to use in resource name tags"
}
## =============================================================================
# Variables - Users #
## =============================================================================
variable "aws_kms_admin" {
type = string
description = "Key Administrator"
}
variable "aws_kms_user" {
type = string
description = "Key User"
}