mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 05:01:55 +03:00
13 lines
212 B
Terraform
13 lines
212 B
Terraform
variable "AWS_REGION" {
|
|
type = string
|
|
default = "eu-west-1"
|
|
}
|
|
variable "project_tags" {
|
|
type = map(string)
|
|
default = {
|
|
Component = "Frontend"
|
|
Environment = "Production"
|
|
}
|
|
}
|
|
|