From 73ea1b23080c5c10e630b6c3b541835b8382f76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Wed, 2 Oct 2024 10:30:45 +0200 Subject: [PATCH] Add notebook records --- ansible/inventory | 1 + ansible/playbook-bootstrap.yml | 1 + ansible/playbook.yml | 1 + tf/environments/prod/dns_records.tf | 8 ++++++++ 4 files changed, 11 insertions(+) diff --git a/ansible/inventory b/ansible/inventory index 3f668198..1e13c160 100644 --- a/ansible/inventory +++ b/ansible/inventory @@ -7,6 +7,7 @@ data.ooni.org oonidata.ooni.org monitoring.ooni.org openvpn-server1.ooni.io +notebook.ooni.org [dev] oonidatatest.ooni.nu diff --git a/ansible/playbook-bootstrap.yml b/ansible/playbook-bootstrap.yml index 110dd61a..ab0d34d3 100644 --- a/ansible/playbook-bootstrap.yml +++ b/ansible/playbook-bootstrap.yml @@ -5,3 +5,4 @@ remote_user: root roles: - ssh_users + - bootstrap diff --git a/ansible/playbook.yml b/ansible/playbook.yml index 02148b4f..dece3fbe 100644 --- a/ansible/playbook.yml +++ b/ansible/playbook.yml @@ -47,6 +47,7 @@ become: true roles: - oonidata + # commented out due to the fact it requires manual config of ~/.ssh/config #- name: Setup codesign box # hosts: codesign-box diff --git a/tf/environments/prod/dns_records.tf b/tf/environments/prod/dns_records.tf index 06f68e81..c2d680a7 100644 --- a/tf/environments/prod/dns_records.tf +++ b/tf/environments/prod/dns_records.tf @@ -997,3 +997,11 @@ resource "aws_route53_record" "openvpn-server1-ooni-io-_A_" { type = "A" zone_id = local.dns_root_zone_ooni_io } + +resource "aws_route53_record" "notebook-ooni-org-_A_" { + name = "notebook.ooni.org" + records = ["138.201.19.39"] + ttl = "60" + type = "A" + zone_id = local.dns_root_zone_ooni_org +}