Skip to content

Commit

Permalink
define default values.
Browse files Browse the repository at this point in the history
  • Loading branch information
mazgi committed Sep 27, 2022
1 parent d2a2250 commit a03ff31
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions provisioning/variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,28 @@ variable "base_dnsdomain" {
}

# <AWS>
variable "aws_default_region" {}
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_default_region" {
default = "us-east-1"
}
variable "aws_access_key" {
default = "AKXXXXXXXX"
}
variable "aws_secret_key" {
default = "AWxxxxxxxx00000000"
}
# </AWS>

# <Azure>
variable "azure_default_location" {}
variable "azure_default_location" {
default = "centralus"
}
# </Azure>

# <Google>
variable "gcp_default_region" {}
variable "gcp_project_id" {}
variable "gcp_default_region" {
default = "us-central1"
}
variable "gcp_project_id" {
default = "my-proj-b78e"
}
# </Google>

0 comments on commit a03ff31

Please sign in to comment.