1
0
Files
terraform.examples/emr/variables.tf
T
2026-02-13 15:44:24 +08:00

9 lines
279 B
Terraform

variable "aws-region" {}
# variable "aws-region-short" {}
variable "customer-name" {}
variable "environment" {}
variable "project" {}
variable "application" {}
locals {
resource-prefix = "${var.environment}-${substr(var.aws-region, 0, 2)}-${var.customer-name}-${var.project}"
}