-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
37 lines (29 loc) · 963 Bytes
/
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
# variables.tf ~ Defines global vars for the project
############################################
## AWS ACCOUNT RELATED VARIABLES
############################################
variable "aws_account_id" {
description = "(Required) The ID of the AWS Account we will act upon"
type = string
}
variable "aws_region" {
description = "(Required) The AWS Region where resources will be created"
type = string
}
variable "aws_profile" {
description = "(Optional) The name for the awscli profile to use for authentication"
default = "default"
}
## AWS account name
variable "aws_account_name" {
description = "(Required) The name of the AWS account"
type = string
}
############################################
## GENERAL VARIABLES
############################################
## Tags
variable "common_tags" {
description = "(Required) Tags to apply to every resource. Environment specific."
type = map(string)
}