-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
55 lines (46 loc) · 1.71 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
# ------------------------------------------------------------------------------
# Project Variables
# ------------------------------------------------------------------------------
variable "environment" {
type = string
default = "production"
description = "This is the Environment name for the resources."
}
variable "project" {
type = string
description = "This is the Project name for which the resources are used."
}
variable "owner" {
type = string
description = "Identify who is responsible for the resources."
}
# ------------------------------------------------------------------------------
# AWS Provider Variables
# ------------------------------------------------------------------------------
variable "aws_region" {
type = string
description = "This is the AWS Region used for creating the Resources."
}
variable "aws_profile" {
type = string
default = "default"
description = "This is the AWS profile name as set in the AWS Shared Credentials file."
}
variable "aws_shared_credentials_file" {
type = string
description = "This is the path to the AWS shared credentials file."
default = "~/.aws/credentials"
}
variable "additonal_aws_default_tags" {
type = map(string)
default = {}
description = "Key-Value map of tags to apply across all resources handled by AWS provider."
}
# ------------------------------------------------------------------------------
# Backend Configuration Variables
# ------------------------------------------------------------------------------
variable "state_storage_bucket" {
type = string
default = ""
description = "This is the S3 bucket name which stores the terraform state."
}