Skip to content

Commit

Permalink
Add notebook records
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Oct 2, 2024
1 parent ff01b50 commit 73ea1b2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions ansible/inventory
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ data.ooni.org
oonidata.ooni.org
monitoring.ooni.org
openvpn-server1.ooni.io
notebook.ooni.org

[dev]
oonidatatest.ooni.nu
1 change: 1 addition & 0 deletions ansible/playbook-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
remote_user: root
roles:
- ssh_users
- bootstrap
1 change: 1 addition & 0 deletions ansible/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions tf/environments/prod/dns_records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 73ea1b2

Please sign in to comment.