Initial Commit

This commit is contained in:
Daniel Mason 2023-04-22 12:37:30 +12:00
parent 8734e2952d
commit 1bb150d44e
Signed by: idanoo
GPG key ID: 387387CDBC02F132
7 changed files with 87 additions and 98 deletions

27
provider.tf Normal file
View file

@ -0,0 +1,27 @@
# 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"
}