Skip to content

Commit ad60be5

Browse files
authored
clean (#232)
1 parent a974611 commit ad60be5

File tree

8 files changed

+1
-33
lines changed

8 files changed

+1
-33
lines changed

.github/workflows/deploy_dns_environment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ env:
2222
TF_VAR_tsig_key_k8s_prod2: "${{ secrets.TF_VAR_TSIG_KEY_K8S_PROD2 }}"
2323
TF_VAR_tsig_key_k8s_dev3: "${{ secrets.TF_VAR_TSIG_KEY_K8S_DEV3 }}"
2424
TF_VAR_tsig_key_ha: "${{ secrets.TF_VAR_TSIG_KEY_HOMEASSISTANT }}"
25-
TF_VAR_tsig_key_grandmox: "${{ secrets.TF_VAR_TSIG_KEY_GRANDMOX }}"
2625
TF_VAR_tsig_key_jon: "${{ secrets.TF_VAR_TSIG_KEY_JON }}"
2726
TF_VAR_tsig_key_10_r630_01: "${{ secrets.TF_VAR_TSIG_KEY_10_R630_01 }}"
2827
TF_VAR_tsig_key_713_r640_01: "${{ secrets.TF_VAR_TSIG_KEY_713_R640_01 }}"

infra/ansible/roles/knot_authoritative/templates/knot.conf.j2

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ key:
3535
- id: k8s.lb.dev3
3636
algorithm: hmac-sha512
3737
secret: {{ TSIG_KEY_K8S_DEV3 }}
38-
- id: grandmox.prox.mesh.nycmesh.net.
39-
algorithm: hmac-sha512
40-
secret: {{ TSIG_KEY_GRANDMOX }}
4138
- id: jon.prox.mesh.nycmesh.net.
4239
algorithm: hmac-sha512
4340
secret: {{ TSIG_KEY_JON }}
@@ -82,12 +79,6 @@ acl:
8279
update-owner-match: equal
8380
update-owner-name: acme-challenge.jamesinternalprodtwo.mesh.nycmesh.net.
8481
key: k8s.lb.prod2
85-
- id: acl-update-grandmox
86-
action: update
87-
update-type: [TXT]
88-
update-owner-match: equal
89-
update-owner-name: acme-challenge.grandmox.prox.mesh.nycmesh.net.
90-
key: grandmox.prox.mesh.nycmesh.net.
9182
- id: acl-update-jon
9283
action: update
9384
update-type: [TXT]
@@ -158,7 +149,7 @@ zone:
158149
acl: acl-update-airflow
159150
- domain: prox.mesh.nycmesh.net
160151
file: prox.mesh.nycmesh.net.zone
161-
acl: [acl-update-grandmox, acl-update-jon, acl-update-nycmesh-10-r630-01, acl-update-nycmesh-713-r640-01]
152+
acl: [acl-update-jon, acl-update-nycmesh-10-r630-01, acl-update-nycmesh-713-r640-01]
162153
- domain: building.mesh.nycmesh.net
163154
file: building.mesh.nycmesh.net.zone
164155
acl: acl-update-building

infra/terraform/dns.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ module "some_mesh_dns_servers" {
3131
tsig_key_k8s_prod1 = var.tsig_key_k8s_prod1
3232
tsig_key_k8s_prod2 = var.tsig_key_k8s_prod2
3333
tsig_key_k8s_dev3 = var.tsig_key_k8s_dev3
34-
tsig_key_grandmox = var.tsig_key_grandmox
3534
tsig_key_jon = var.tsig_key_jon
3635
tsig_key_10_r630_01 = var.tsig_key_10_r630_01
3736
tsig_key_713_r640_01 = var.tsig_key_713_r640_01

infra/terraform/mesh_dns_servers/ansible.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ resource "ansible_group" "knot-authoritative" {
2626
TSIG_KEY_K8S_PROD1 = var.tsig_key_k8s_prod1
2727
TSIG_KEY_K8S_PROD2 = var.tsig_key_k8s_prod2
2828
TSIG_KEY_K8S_DEV3 = var.tsig_key_k8s_dev3
29-
TSIG_KEY_GRANDMOX = var.tsig_key_grandmox
3029
TSIG_KEY_JON = var.tsig_key_jon
3130
TSIG_KEY_10_R630_01 = var.tsig_key_10_r630_01
3231
TSIG_KEY_713_R640_01 = var.tsig_key_713_r640_01

infra/terraform/mesh_dns_servers/vars.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,6 @@ variable "tsig_key_k8s_dev3" {
188188
sensitive = true
189189
}
190190

191-
variable "tsig_key_grandmox" {
192-
type = string
193-
description = "TSIG key for the grandmox.mesh.nycmesh.net zone"
194-
sensitive = true
195-
}
196-
197191
variable "tsig_key_jon" {
198192
type = string
199193
description = "TSIG key for the jon.mesh.nycmesh.net zone"

infra/terraform/vars.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,6 @@ variable "tsig_key_k8s_dev3" {
187187
sensitive = true
188188
}
189189

190-
variable "tsig_key_grandmox" {
191-
type = string
192-
description = "TSIG key for the grandmox.mesh.nycmesh.net zone"
193-
sensitive = true
194-
}
195-
196190
variable "tsig_key_jon" {
197191
type = string
198192
description = "TSIG key for the jon.mesh.nycmesh.net zone"

mesh.zone

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ andrew NS andrew-vpn-endpoint-router
7171
; Willard
7272
zabbix A 10.70.90.40
7373
status A 164.92.117.225
74-
grandbox A 10.69.19.233
75-
*.grandbox CNAME grandbox
76-
grandsvc A 199.167.59.101
77-
*.grandsvc CNAME grandsvc
7874

7975
; James
8076
scan A 10.70.90.120
@@ -109,9 +105,6 @@ nms A 10.70.118.10
109105
scuttle A 10.70.73.4
110106
lte A 10.70.90.170
111107

112-
; Grand
113-
grandmox A 10.70.188.196
114-
115108
; The Room
116109
room A 10.69.30.65
117110
meshroom CNAME room

prox.mesh.nycmesh.net.zone

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ $TTL 3600
55
; Authoritative DNS servers
66
nycmesh-713-dns-auth-3 A 199.170.132.47
77

8-
grandmox A 10.70.188.196
98
jon A 10.70.90.52
109
nycmesh-10-r630-01 A 10.70.103.186
1110
nycmesh-713-r640-01 A 10.70.90.195

0 commit comments

Comments
 (0)