-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.tf
69 lines (57 loc) · 1.77 KB
/
providers.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
provider "aws" {
region = var.aws_region
default_tags {
tags = {
Owner = var.owner
Value_Stream = var.value_stream
Product = var.product
Component = var.component
Environment = var.environment
Data_Classification = var.data_classification
Created_Using = var.created_using
Source_code = var.source_code
}
}
}
############### Default provider variables block ################
variable "aws_region" {
description = "The AWS region in which to deploy the instance."
type = string
}
#####
## Provider tags
#####
# Default tags are described here
#https://vertexinc.atlassian.net/wiki/spaces/AWSTS/pages/2490108213/AWS+Objects+Tagging+Standards
variable "owner" {
description = "The group that supports the environment."
type = string
}
variable "value_stream" {
description = "The name of the Stream (e.g. Information Technology)."
type = string
}
variable "product" {
description = "High level product that is sold to customers or used internally. (e.g. Vertex Content Management System)."
type = string
}
variable "component" {
description = "The name of the system components."
type = string
}
variable "environment" {
description = "Specifies the current environment."
type = string
}
variable "data_classification" {
description = "Type of data confidentiality."
type = string
}
variable "created_using" {
description = "Tool that was used to create the application."
type = string
}
variable "source_code" {
description = "The location of the source code for creating this resource."
type = string
}