File tree 2 files changed +9
-0
lines changed
templates/terraform/examples
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,14 @@ properties:
129
129
- ' ECDSA_P256'
130
130
- ' ECDSA_P384'
131
131
- ' EDDSA_25519'
132
+ - name : ' backdateDuration'
133
+ type : String
134
+ description : |
135
+ The duration to backdate all certificates issued from this CaPool. If not set, the
136
+ certificates will be issued with a not_before_time of the issuance time (i.e. the current
137
+ time). If set, the certificates will be issued with a not_before_time of the issuance
138
+ time minus the backdate_duration. The not_after_time will be adjusted to preserve the
139
+ requested lifetime. The backdate_duration must be less than or equal to 48 hours.
132
140
- name : ' maximumLifetime'
133
141
type : String
134
142
description : |
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ resource "google_privateca_ca_pool" "{{$.PrimaryResourceId}}" {
22
22
max_modulus_size = 10
23
23
}
24
24
}
25
+ backdate_duration = "3600s"
25
26
maximum_lifetime = "50000s"
26
27
allowed_issuance_modes {
27
28
allow_csr_based_issuance = true
You can’t perform that action at this time.
0 commit comments