File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
infra/gcp/terraform/k8s-infra-prow Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,10 @@ prow:
260260 type : A
261261 ttl : 600 # this has needed to change in the past
262262 value : 35.186.196.185
263+ # prow-certificates in k8s-infra-prow project
264+ _acme-challenge.prow :
265+ type : CNAME
266+ value : ec952040-1ea9-43db-b382-e0fde0cddbb6.16.authorize.certificatemanager.goog.
263267hooks.prow :
264268 - type : A
265269 ttl : 600 # this has needed to change in the past
Original file line number Diff line number Diff line change 1+ resource "google_certificate_manager_dns_authorization" "prow" {
2+ name = " dns-authz-prow-k8s-io"
3+ description = " *.prow.k8s.io challenge"
4+ domain = " prow.k8s.io"
5+ project = module. project . project_id
6+ }
7+
8+ resource "google_certificate_manager_certificate" "prow" {
9+ name = " prow-certificates"
10+ description = " Prow Certificates"
11+ project = module. project . project_id
12+ managed {
13+ domains = [" prow.k8s.io" ," *.prow.k8s.io" ]
14+ dns_authorizations = [
15+ google_certificate_manager_dns_authorization . prow . id
16+ ]
17+ }
18+ }
19+
You can’t perform that action at this time.
0 commit comments