We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 223ca7e + f67e652 commit 2f3dccfCopy full SHA for 2f3dccf
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