Skip to content

Commit

Permalink
feat(archives.jenkins.io) allow more IPs for SSH (#163)
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Duportal <[email protected]>
  • Loading branch information
dduportal authored Sep 27, 2023
1 parent f8625a8 commit 31e28d2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions archives.jenkins.io.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,16 @@ resource "digitalocean_firewall" "archives_jenkins_io" {
inbound_rule {
protocol = "tcp"
port_range = "22"

# TODO: implement a common way to share admin IPs through terraform projects
source_addresses = [
"109.88.234.158/32", # dduportal
"129.146.98.132/32", # Oracle's VM archives.jenkins.io (for data migration)
"109.88.234.158/32", # dduportal
"176.185.227.180/32", # hlemeur
"162.142.59.220/32", # mwaite
"82.64.5.129/32", # smerle33
"129.146.98.132/32", # Oracle's VM archives.jenkins.io (for data migration)
"52.202.51.185/32", # pkg.jenkins.io
"104.209.128.236/32", # trusted.ci.jenkins.io
]
}

Expand Down

0 comments on commit 31e28d2

Please sign in to comment.