drop statusim.net domain config in favor of status.im
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
0e2637f02a
commit
c514988352
|
@ -1,7 +1,7 @@
|
|||
# NOTE: This file is generated by terraform.py
|
||||
# For emergency use when Consul fails
|
||||
[all]
|
||||
master-01.gc-us-central1-a.faucet.prod hostname=master-01.gc-us-central1-a.faucet.prod ansible_host=104.198.219.13 env=faucet stage=prod data_center=gc-us-central1-a region=us-central1-a dns_entry=master-01.gc-us-central1-a.faucet.prod.statusim.net
|
||||
master-01.gc-us-central1-a.faucet.prod hostname=master-01.gc-us-central1-a.faucet.prod ansible_host=104.198.219.13 env=faucet stage=prod data_center=gc-us-central1-a region=us-central1-a dns_entry=master-01.gc-us-central1-a.faucet.prod.status.im
|
||||
|
||||
[faucet-master]
|
||||
master-01.gc-us-central1-a.faucet.prod
|
||||
|
|
1
hosts.tf
1
hosts.tf
|
@ -7,7 +7,6 @@ module "main" {
|
|||
host_count = 1
|
||||
root_vol_size = 30
|
||||
data_vol_size = 250
|
||||
domain = var.domain
|
||||
|
||||
open_tcp_ports = [
|
||||
"80", /* HTTP */
|
||||
|
|
|
@ -7,5 +7,4 @@ provider "google" {
|
|||
provider "cloudflare" {
|
||||
email = data.pass_password.cloudflare_email.password
|
||||
api_key = data.pass_password.cloudflare_token.password
|
||||
account_id = data.pass_password.cloudflare_account.password
|
||||
}
|
||||
|
|
|
@ -11,11 +11,6 @@ data "pass_password" "cloudflare_email" {
|
|||
path = "cloud/Cloudflare/email"
|
||||
}
|
||||
|
||||
/* ID of CloudFlare Account. */
|
||||
data "pass_password" "cloudflare_account" {
|
||||
path = "cloud/Cloudflare/account"
|
||||
}
|
||||
|
||||
/* Google Cloud API auth JSON */
|
||||
data "pass_password" "google_cloud_cred_json" {
|
||||
path = "cloud/GoogleCloud/json"
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
/* GENERAL --------------------------------------*/
|
||||
|
||||
variable "domain" {
|
||||
description = "DNS Domain to update"
|
||||
default = "statusim.net"
|
||||
}
|
|
@ -3,14 +3,13 @@ terraform {
|
|||
required_providers {
|
||||
cloudflare = {
|
||||
source = "cloudflare/cloudflare"
|
||||
version = " = 2.21.0"
|
||||
}
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
}
|
||||
pass = {
|
||||
source = "camptocamp/pass"
|
||||
version = " = 2.0.0"
|
||||
}
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue