-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
86 lines (75 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#======================================= General =======================================#
variable "environment" {
type = string
description = "The SDLC Environment this is being deployed in"
default = "dev"
}
variable "default_tags" {
description = "Default Tags"
default = {
team = "dev-team"
owner = "dotcore-solutions"
repository = "dotnet-conf-2023"
workload = "common"
environment = "dev"
}
}
#======================================= AWS =======================================#
variable "profile" {
type = string
description = "Profile Description"
default = "terraformcloud"
}
variable "aws_account_number" {
type = string
description = "This account number is for the dotcore Soluctions AWS Account"
default = "710802848577"
}
variable "aws_account_name" {
type = string
description = "Set the Account name, this needs to be globally unique."
default = "dotnet-conf-2023"
}
variable "aws_team_code" {
type = string
description = "The name of the Team Code to use in the naming convention"
default = "dotnet-conf-2023"
}
variable "tfe_dev_create_role_boundry_arn" {
description = "arn for boundry for all iam role create actions"
default = ""
}
variable "aws_region_shortname" {
description = "Region shortname we like to use for af-south-1"
default = {
afs = "afs"
euw = "euw"
}
}
variable "aws_region" {
description = "The regions to choose from to deploy in AWS"
default = {
af = "af-south-1"
eu = "eu-west-1"
}
}
#======================================= Azure =======================================#
variable "azure_region" {
description = "The regions to choose from to deploy in Azure"
default = {
afw = "southafricanorth"
}
}
#======================================= GCP =======================================#
variable "google_region" {
description = "The regions to choose from to deploy in GCP"
default = {
us = "us-central1"
}
}
variable "google_project" {
description = "The project to choose from to deploy in GCP"
default = {
dotnetconf2023 = "dotnet-conf-2023"
}
}