Skip to content

Commit 6c69a60

Browse files
committed
create prow certificates
1 parent 57051f1 commit 6c69a60

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

dns/zone-configs/k8s.io._0_base.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
263267
hooks.prow:
264268
- type: A
265269
ttl: 600 # this has needed to change in the past
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+

0 commit comments

Comments
 (0)