diff --git a/ansible/inventory/test b/ansible/inventory/test index b02abfd..31bdc98 100644 --- a/ansible/inventory/test +++ b/ansible/inventory/test @@ -31,6 +31,7 @@ store-03.he-eu-hel1.logs.nimbus hostname=store-03.he-eu-hel1.logs.nimbus ansible testing-large-01.aws-eu-central-1a.nimbus.prater hostname=testing-large-01.aws-eu-central-1a.nimbus.prater ansible_host=3.65.99.236 env=nimbus stage=prater data_center=aws-eu-central-1a region=eu-central-1a dns_entry=testing-large-01.aws-eu-central-1a.nimbus.prater.statusim.net unstable-large-01.aws-eu-central-1a.nimbus.prater hostname=unstable-large-01.aws-eu-central-1a.nimbus.prater ansible_host=3.65.85.130 env=nimbus stage=prater data_center=aws-eu-central-1a region=eu-central-1a dns_entry=unstable-large-01.aws-eu-central-1a.nimbus.prater.statusim.net windows-01.he-eu-hel1.nimbus.prater hostname=windows-01.he-eu-hel1.nimbus.prater ansible_host=65.21.233.67 env=nimbus stage=prater data_center=he-eu-hel1 region=eu-hel1 dns_entry=windows-01.he-eu-hel1.nimbus.prater.statusim.net +windows-goerli-01.he-eu-hel1.nimbus.geth hostname=windows-goerli-01.he-eu-hel1.nimbus.geth ansible_host=65.21.196.47 env=nimbus stage=geth data_center=he-eu-hel1 region=eu-hel1 dns_entry=windows-goerli-01.he-eu-hel1.nimbus.geth.statusim.net [aws-eu-central-1a] goerli-01.aws-eu-central-1a.nimbus.geth @@ -67,6 +68,7 @@ store-01.he-eu-hel1.logs.nimbus store-02.he-eu-hel1.logs.nimbus store-03.he-eu-hel1.logs.nimbus windows-01.he-eu-hel1.nimbus.prater +windows-goerli-01.he-eu-hel1.nimbus.geth [log-dash] node-01.aws-eu-central-1a.dash.nimbus @@ -89,6 +91,9 @@ metal-02.he-eu-hel1.nimbus.fluffy [nimbus-geth-goerli] goerli-01.aws-eu-central-1a.nimbus.geth +[nimbus-geth-goerli-windows] +windows-goerli-01.he-eu-hel1.nimbus.geth + [nimbus-geth-mainnet] mainnet-01.aws-eu-central-1a.nimbus.geth @@ -143,6 +148,7 @@ metal-02.he-eu-hel1.nimbus.fluffy [nimbus.geth] goerli-01.aws-eu-central-1a.nimbus.geth mainnet-01.aws-eu-central-1a.nimbus.geth +windows-goerli-01.he-eu-hel1.nimbus.geth [nimbus.kiln] metal-01.he-eu-hel1.nimbus.kiln diff --git a/geth.tf b/geth.tf index 3cdece0..9d90795 100644 --- a/geth.tf +++ b/geth.tf @@ -51,3 +51,21 @@ module "nimbus_geth_goerli" { secgroup_id = module.nimbus_network.secgroup.id keypair_name = aws_key_pair.jakubgs.key_name } + +module "nimbus_geth_goerli_windows" { + source = "github.com/status-im/infra-tf-dummy-module" + + name = "windows-goerli" + env = "nimbus" + stage = "geth" + group = "nimbus-geth-goerli-windows" + region = "eu-hel1" + prefix = "he" + domain = var.domain + + ips = [ + "65.21.196.47", # windows-goerli-01.he-eu-hel1.nimbus.geth + ] +} + + diff --git a/outputs.tf b/outputs.tf index b8397cf..a41d056 100644 --- a/outputs.tf +++ b/outputs.tf @@ -4,6 +4,7 @@ output "hosts" { module.nimbus_log_store.hosts, module.nimbus_geth_goerli.hosts, module.nimbus_geth_mainnet.hosts, + module.nimbus_geth_goerli_windows.hosts, module.nimbus_nodes_mainnet_hetzner.hosts, module.nimbus_nodes_mainnet_stable_small.hosts, module.nimbus_nodes_prater_stable_large.hosts,