We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a16134 + baf64e6 commit 0039a7fCopy full SHA for 0039a7f
1 file changed
runner-vm.tf
@@ -36,9 +36,9 @@ resource "tls_private_key" "auth_proxy" {
36
algorithm = "RSA"
37
rsa_bits = 2048
38
39
- # Force recreation when rotation time changes
40
lifecycle {
41
create_before_destroy = true
+ replace_triggered_by = [time_rotating.auth_proxy_cert_rotation]
42
}
43
44
@@ -52,9 +52,9 @@ resource "tls_self_signed_cert" "auth_proxy" {
52
53
validity_period_hours = 8760 # 1 year
54
55
56
57
58
59
60
allowed_uses = [
0 commit comments