mirror of
https://github.com/dragonheim/gagent.git
synced 2025-07-12 13:08:16 -07:00
Very preliminary tf scripting.
This commit is contained in:
parent
0266d9ee8a
commit
f1844c1a4e
8 changed files with 275 additions and 0 deletions
18
tfenv/main.tf
Normal file
18
tfenv/main.tf
Normal file
|
@ -0,0 +1,18 @@
|
|||
# main.tf
|
||||
module "us-east-1" {
|
||||
source = "./cluster"
|
||||
region = "us-east-1"
|
||||
provider_alias = us-west-2
|
||||
providers = {
|
||||
aws = "aws.us-east-1"
|
||||
}
|
||||
}
|
||||
|
||||
module "us-west-2" {
|
||||
source = "./cluster"
|
||||
region = "us-west-2"
|
||||
provider_alias = us-west-2
|
||||
providers = {
|
||||
aws = "aws.us-west-2"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue