forked from github.com/GenderDysphoria.fyi
Adding terraform config
This currently just redirects to the old bible, but at least everything is up and running
This commit is contained in:
25
terraform/vars.tf
Normal file
25
terraform/vars.tf
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user