1
0

chore: renamed layers

This commit is contained in:
xpk
2026-02-13 17:48:17 +08:00
parent a11eaf25cc
commit 958e4977e9
15 changed files with 4 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
provider "aws" {
region = var.aws-region
default_tags {
tags = {
ServiceProvider = "RackspaceTechnology"
Environment = var.environment
Project = var.project
Application = var.application
TerraformDir = join("/", reverse(slice(reverse(split("/", path.cwd)), 0, 2)))
}
}
}
terraform {
required_version = "~> 1.13.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 6.0"
}
}
/*
backend "s3" {
bucket = "whk1-bea-sys-ss-prd-tfgen2-state1"
key = "terraform_state/LandingZone/master-payer/sso.tfstate"
region = "ap-east-1"
dynamodb_table = "whk1-bea-sys-ss-prd-tfgen2-lock"
encrypt = true
}
*/
}
data aws_caller_identity current {}