initial AWS terraform (#180)

* initial AWS terraform
This commit is contained in:
3u13r 2022-09-27 14:02:56 +02:00 committed by GitHub
parent a6d201b761
commit 130c61ffcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 612 additions and 0 deletions

View file

@ -0,0 +1,10 @@
variable "name_prefix" {
type = string
description = "Prefix for all resources"
}
variable "region" {
type = string
description = "AWS region"
default = "us-east-2"
}