e9c492d149
- Create action for setting up OpenTofu environment - Update Terraform workflow to use OpenTofu for infrastructure management - Modify backend configuration for S3 with new bucket and region - Add S3 bucket resources with lifecycle configuration - Update local variables and remove deprecated files - Include required Python packages for OpenTofu
9 lines
244 B
Terraform
9 lines
244 B
Terraform
locals {
|
|
region = "eu-west-1"
|
|
billing_alarm_limit = 20
|
|
billing_alarm_emails = "c.alexandre.pires@alexpires.me"
|
|
account_id = data.aws_caller_identity.current.account_id
|
|
}
|
|
|
|
data "aws_caller_identity" "current" {}
|