1
0
mirror of https://github.com/GenderDysphoria/GenderDysphoria.fyi.git synced 2025-11-25 20:42:40 +00:00

Adding terraform config

This currently just redirects to the old bible, but at least everything is up and running
This commit is contained in:
Jocelyn Badgley (Twipped)
2020-02-13 09:46:46 -08:00
commit 3793c0f363
14 changed files with 877 additions and 0 deletions

25
terraform/vars.tf Normal file
View File

@@ -0,0 +1,25 @@
variable "site" {
type = string
description = "The name of the site"
default = "gdbible"
}
variable "domain" {
type = string
description = "The base domain name of the site that all these belong to."
default = "genderdysphoria.fyi"
}
variable "subdomains" {
type = list
default = [
"www",
"t"
]
}
provider "aws" {
profile = "default"
region = "us-east-1"
}