Setup cloudflare terraforming

This commit is contained in:
Jake Howard 2020-02-22 20:22:28 +00:00
parent 0f984f3f23
commit f37519246a
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 9 additions and 0 deletions

View File

@ -3,3 +3,8 @@ provider "vultr" {
rate_limit = 700
retry_limit = 3
}
provider "cloudflare" {
email = "hosting+cloudflare@theorangeone.net"
api_key = var.cloudflare_api_key
}

View File

@ -0,0 +1,3 @@
resource "cloudflare_zone" "theorangeonenet" {
zone = "theorangeone.net"
}

View File

@ -1 +1,2 @@
variable "vultr_api_key" {}
variable "cloudflare_api_key" {}