21 lines
658 B
Terraform
21 lines
658 B
Terraform
|
variable "aws-region" {}
|
||
|
variable "aws-region-short" {}
|
||
|
variable "customer-name" {}
|
||
|
variable "environment" {}
|
||
|
variable "project" {}
|
||
|
variable "application" {}
|
||
|
|
||
|
locals {
|
||
|
default-tags = {
|
||
|
ServiceProvider = "Rackspace"
|
||
|
Environment = var.environment
|
||
|
Project = var.project
|
||
|
Application = var.application
|
||
|
TerraformMode = "managed"
|
||
|
BuildDate = formatdate("YYYYMMDD", timestamp())
|
||
|
}
|
||
|
ct-bucket-name = "${var.environment}-${var.aws-region-short}-${var.customer-name}-${var.project}-ctbucket-${data.aws_caller_identity.this.account_id}"
|
||
|
resource-prefix = "${var.environment}-${var.aws-region-short}-${var.customer-name}-${var.project}"
|
||
|
}
|
||
|
|