All checks were successful
Terraform validate and apply / nix (ubuntu-latest) (push) Successful in 3m7s
18 lines
501 B
Plaintext
18 lines
501 B
Plaintext
# Example Terraform variables file
|
|
# Copy this file to terraform.tfvars and update with your actual values
|
|
|
|
# AWS region where resources will be created
|
|
aws_region = "us-east-2"
|
|
|
|
# Your domain name (must be managed by Cloudflare)
|
|
site_domain = "example.com"
|
|
|
|
# Project name for resource tagging
|
|
project_name = "tuffas"
|
|
|
|
# Environment (dev, staging, prod)
|
|
environment = "prod"
|
|
|
|
# IAM role ARNs (update with your actual role ARNs)
|
|
tuffas_applier_role_arn = "arn:aws:iam::YOUR-ACCOUNT-ID:role/ROLE_NAME"
|