mirror of
https://github.com/idanoo/fediservices.nz-infra
synced 2025-07-01 22:02:15 +00:00
27 lines
No EOL
399 B
HCL
27 lines
No EOL
399 B
HCL
# TF state
|
|
terraform {
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "4.52.0"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
version = "3.4.3"
|
|
}
|
|
}
|
|
required_version = ">= 1.1.0"
|
|
|
|
cloud {
|
|
organization = "fediservices"
|
|
|
|
workspaces {
|
|
name = "aws-infra"
|
|
}
|
|
}
|
|
}
|
|
|
|
# AWS Provider
|
|
provider "aws" {
|
|
region = "ap-southeast-2"
|
|
} |