1
0

initial commit

This commit is contained in:
xpk
2026-02-13 15:44:24 +08:00
parent 66be8224f4
commit 09ce4c881a
570 changed files with 61807 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# Every module should be documented
## Description
## Input variables
## Output variables
## Example
+1
View File
@@ -0,0 +1 @@
# main.tf
+27
View File
@@ -0,0 +1,27 @@
provider "aws" {
region = var.aws-region
default_tags {
tags = {
Environment = var.environment
Project = var.project
Application = var.application
TerraformMode = "managed"
TerraformDir = "${reverse(split("/", path.cwd))[1]}/${reverse(split("/", path.cwd))[0]}"
}
}
}
terraform {
required_version = ">= 1.3"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
}
}
}
output "last-updated" {
value = timestamp()
}
+5
View File
@@ -0,0 +1,5 @@
aws-region = "ap-east-1"
customer-name = "CX"
environment = "prod"
project = "SupportTools"
application = "Undefined"
+5
View File
@@ -0,0 +1,5 @@
variable "aws-region" {}
variable "customer-name" {}
variable "environment" {}
variable "project" {}
variable "application" {}