You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Structure that contains options for your certificate. Currently, you can
134
+
use this only to specify whether to opt in to or out of certificate transparency
135
+
logging. Some browsers require that public certificates issued for your domain
136
+
be recorded in a log. Certificates that are not logged typically generate
137
+
a browser error. Transparency makes it possible for you to detect SSL/TLS
138
+
certificates that have been mistakenly or maliciously issued for your domain.
139
+
For general information, see Certificate Transparency Logging (https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency).
180
140
properties:
181
141
certificateTransparencyLoggingPreference:
182
142
type: string
183
143
type: object
184
144
privateKey:
185
145
description: |-
186
-
The private key that matches the public key in the certificate. This field is only valid when importing
187
-
an existing certificate into ACM.
146
+
SecretKeyReference combines a k8s corev1.SecretReference with a
147
+
specific key within the referred-to Secret
188
148
properties:
189
149
key:
190
150
description: Key is the key within the secret
@@ -201,35 +161,14 @@ spec:
201
161
- key
202
162
type: object
203
163
x-kubernetes-map-type: atomic
164
+
x-kubernetes-validations:
165
+
- message: Value is immutable once set
166
+
rule: self == oldSelf
204
167
subjectAlternativeNames:
205
-
description: |-
206
-
Additional FQDNs to be included in the Subject Alternative Name extension
207
-
of the ACM certificate. For example, add the name www.example.net to a certificate
208
-
for which the DomainName field is www.example.com if users can reach your
209
-
site by using either name. The maximum number of domain names that you can
210
-
add to an ACM certificate is 100. However, the initial quota is 10 domain
211
-
names. If you need more than 10 names, you must request a quota increase.
212
-
For more information, see Quotas (https://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html).
213
-
214
-
The maximum length of a SAN DNS name is 253 octets. The name is made up of
215
-
multiple labels separated by periods. No label can be longer than 63 octets.
216
-
Consider the following examples:
217
-
218
-
* (63 octets).(63 octets).(63 octets).(61 octets) is legal because the
219
-
total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63
220
-
octets.
221
-
222
-
* (64 octets).(63 octets).(63 octets).(61 octets) is not legal because
223
-
the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first
224
-
label exceeds 63 octets.
225
-
226
-
* (63 octets).(63 octets).(63 octets).(62 octets) is not legal because
227
-
the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.
228
168
items:
229
169
type: string
230
170
type: array
231
171
tags:
232
-
description: One or more resource tags to associate with the certificate.
233
172
items:
234
173
description: A key-value pair that identifies or specifies metadata
235
174
about an ACM resource.
@@ -275,7 +214,7 @@ spec:
275
214
type: object
276
215
conditions:
277
216
description: |-
278
-
All CRS managed by ACK have a common `Status.Conditions` member that
217
+
All CRs managed by ACK have a common `Status.Conditions` member that
279
218
contains a collection of `ackv1alpha1.Condition` objects that describe
280
219
the various terminal states of the CR and its backend AWS service API
0 commit comments