mirror of
https://github.com/idanoo/fediservices.nz-infra
synced 2025-07-02 06:12:15 +00:00
Initial Commit
This commit is contained in:
parent
8734e2952d
commit
1bb150d44e
7 changed files with 87 additions and 98 deletions
27
provider.tf
Normal file
27
provider.tf
Normal 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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue