pulumi-venafi 1.11.0a1726035047__py3-none-any.whl → 1.11.0a1726294080__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-venafi might be problematic. Click here for more details.
- pulumi_venafi/certificate.py +235 -0
- pulumi_venafi/cloud_keystore_installation.py +8 -8
- pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/METADATA +1 -1
- {pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/RECORD +7 -7
- {pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/top_level.txt +0 -0
pulumi_venafi/certificate.py
CHANGED
|
@@ -17,6 +17,7 @@ class CertificateArgs:
|
|
|
17
17
|
common_name: pulumi.Input[str],
|
|
18
18
|
algorithm: Optional[pulumi.Input[str]] = None,
|
|
19
19
|
certificate_dn: Optional[pulumi.Input[str]] = None,
|
|
20
|
+
country: Optional[pulumi.Input[str]] = None,
|
|
20
21
|
csr_origin: Optional[pulumi.Input[str]] = None,
|
|
21
22
|
csr_pem: Optional[pulumi.Input[str]] = None,
|
|
22
23
|
custom_fields: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -24,7 +25,10 @@ class CertificateArgs:
|
|
|
24
25
|
expiration_window: Optional[pulumi.Input[int]] = None,
|
|
25
26
|
issuer_hint: Optional[pulumi.Input[str]] = None,
|
|
26
27
|
key_password: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
locality: Optional[pulumi.Input[str]] = None,
|
|
27
29
|
nickname: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
organization: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
organizational_units: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
28
32
|
pkcs12: Optional[pulumi.Input[str]] = None,
|
|
29
33
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
|
30
34
|
renew_required: Optional[pulumi.Input[bool]] = None,
|
|
@@ -33,11 +37,13 @@ class CertificateArgs:
|
|
|
33
37
|
san_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
34
38
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
35
39
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
40
|
+
state: Optional[pulumi.Input[str]] = None,
|
|
36
41
|
valid_days: Optional[pulumi.Input[int]] = None):
|
|
37
42
|
"""
|
|
38
43
|
The set of arguments for constructing a Certificate resource.
|
|
39
44
|
:param pulumi.Input[str] common_name: The common name of the certificate.
|
|
40
45
|
:param pulumi.Input[str] algorithm: Key encryption algorithm, either RSA or ECDSA. Defaults to `RSA`.
|
|
46
|
+
:param pulumi.Input[str] country: Country of the certificate (C)
|
|
41
47
|
:param pulumi.Input[str] csr_origin: Whether key-pair generation will be `local` or `service` generated. Default is
|
|
42
48
|
`local`.
|
|
43
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_fields: Collection of Custom Field name-value pairs to assign to the certificate.
|
|
@@ -47,8 +53,11 @@ class CertificateArgs:
|
|
|
47
53
|
:param pulumi.Input[str] issuer_hint: Used with `valid_days` to indicate the target issuer when using Trust Protection
|
|
48
54
|
Platform. Relevant values are: `DigiCert`, `Entrust`, and `Microsoft`.
|
|
49
55
|
:param pulumi.Input[str] key_password: The password used to encrypt the private key.
|
|
56
|
+
:param pulumi.Input[str] locality: Locality/City of the certificate (L)
|
|
50
57
|
:param pulumi.Input[str] nickname: Use to specify a name for the new certificate object that will be created and placed
|
|
51
58
|
in a policy. Only valid for Trust Protection Platform.
|
|
59
|
+
:param pulumi.Input[str] organization: Organization of the certificate (O)
|
|
60
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] organizational_units: List of Organizational Units of the certificate (OU)
|
|
52
61
|
:param pulumi.Input[str] pkcs12: A base64-encoded PKCS#12 keystore secured by the `key_password`. Useful when working with resources like
|
|
53
62
|
azure key_vault_certificate.
|
|
54
63
|
:param pulumi.Input[str] private_key_pem: The private key in PEM format.
|
|
@@ -60,6 +69,7 @@ class CertificateArgs:
|
|
|
60
69
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_ips: List of IP addresses to use as alternative subjects of the certificate.
|
|
61
70
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
62
71
|
the certificate.
|
|
72
|
+
:param pulumi.Input[str] state: State of the certificate (S)
|
|
63
73
|
:param pulumi.Input[int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
64
74
|
"""
|
|
65
75
|
pulumi.set(__self__, "common_name", common_name)
|
|
@@ -67,6 +77,8 @@ class CertificateArgs:
|
|
|
67
77
|
pulumi.set(__self__, "algorithm", algorithm)
|
|
68
78
|
if certificate_dn is not None:
|
|
69
79
|
pulumi.set(__self__, "certificate_dn", certificate_dn)
|
|
80
|
+
if country is not None:
|
|
81
|
+
pulumi.set(__self__, "country", country)
|
|
70
82
|
if csr_origin is not None:
|
|
71
83
|
pulumi.set(__self__, "csr_origin", csr_origin)
|
|
72
84
|
if csr_pem is not None:
|
|
@@ -81,8 +93,14 @@ class CertificateArgs:
|
|
|
81
93
|
pulumi.set(__self__, "issuer_hint", issuer_hint)
|
|
82
94
|
if key_password is not None:
|
|
83
95
|
pulumi.set(__self__, "key_password", key_password)
|
|
96
|
+
if locality is not None:
|
|
97
|
+
pulumi.set(__self__, "locality", locality)
|
|
84
98
|
if nickname is not None:
|
|
85
99
|
pulumi.set(__self__, "nickname", nickname)
|
|
100
|
+
if organization is not None:
|
|
101
|
+
pulumi.set(__self__, "organization", organization)
|
|
102
|
+
if organizational_units is not None:
|
|
103
|
+
pulumi.set(__self__, "organizational_units", organizational_units)
|
|
86
104
|
if pkcs12 is not None:
|
|
87
105
|
pulumi.set(__self__, "pkcs12", pkcs12)
|
|
88
106
|
if private_key_pem is not None:
|
|
@@ -99,6 +117,8 @@ class CertificateArgs:
|
|
|
99
117
|
pulumi.set(__self__, "san_ips", san_ips)
|
|
100
118
|
if san_uris is not None:
|
|
101
119
|
pulumi.set(__self__, "san_uris", san_uris)
|
|
120
|
+
if state is not None:
|
|
121
|
+
pulumi.set(__self__, "state", state)
|
|
102
122
|
if valid_days is not None:
|
|
103
123
|
pulumi.set(__self__, "valid_days", valid_days)
|
|
104
124
|
|
|
@@ -135,6 +155,18 @@ class CertificateArgs:
|
|
|
135
155
|
def certificate_dn(self, value: Optional[pulumi.Input[str]]):
|
|
136
156
|
pulumi.set(self, "certificate_dn", value)
|
|
137
157
|
|
|
158
|
+
@property
|
|
159
|
+
@pulumi.getter
|
|
160
|
+
def country(self) -> Optional[pulumi.Input[str]]:
|
|
161
|
+
"""
|
|
162
|
+
Country of the certificate (C)
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "country")
|
|
165
|
+
|
|
166
|
+
@country.setter
|
|
167
|
+
def country(self, value: Optional[pulumi.Input[str]]):
|
|
168
|
+
pulumi.set(self, "country", value)
|
|
169
|
+
|
|
138
170
|
@property
|
|
139
171
|
@pulumi.getter(name="csrOrigin")
|
|
140
172
|
def csr_origin(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -219,6 +251,18 @@ class CertificateArgs:
|
|
|
219
251
|
def key_password(self, value: Optional[pulumi.Input[str]]):
|
|
220
252
|
pulumi.set(self, "key_password", value)
|
|
221
253
|
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter
|
|
256
|
+
def locality(self) -> Optional[pulumi.Input[str]]:
|
|
257
|
+
"""
|
|
258
|
+
Locality/City of the certificate (L)
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "locality")
|
|
261
|
+
|
|
262
|
+
@locality.setter
|
|
263
|
+
def locality(self, value: Optional[pulumi.Input[str]]):
|
|
264
|
+
pulumi.set(self, "locality", value)
|
|
265
|
+
|
|
222
266
|
@property
|
|
223
267
|
@pulumi.getter
|
|
224
268
|
def nickname(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -232,6 +276,30 @@ class CertificateArgs:
|
|
|
232
276
|
def nickname(self, value: Optional[pulumi.Input[str]]):
|
|
233
277
|
pulumi.set(self, "nickname", value)
|
|
234
278
|
|
|
279
|
+
@property
|
|
280
|
+
@pulumi.getter
|
|
281
|
+
def organization(self) -> Optional[pulumi.Input[str]]:
|
|
282
|
+
"""
|
|
283
|
+
Organization of the certificate (O)
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "organization")
|
|
286
|
+
|
|
287
|
+
@organization.setter
|
|
288
|
+
def organization(self, value: Optional[pulumi.Input[str]]):
|
|
289
|
+
pulumi.set(self, "organization", value)
|
|
290
|
+
|
|
291
|
+
@property
|
|
292
|
+
@pulumi.getter(name="organizationalUnits")
|
|
293
|
+
def organizational_units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
294
|
+
"""
|
|
295
|
+
List of Organizational Units of the certificate (OU)
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "organizational_units")
|
|
298
|
+
|
|
299
|
+
@organizational_units.setter
|
|
300
|
+
def organizational_units(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
301
|
+
pulumi.set(self, "organizational_units", value)
|
|
302
|
+
|
|
235
303
|
@property
|
|
236
304
|
@pulumi.getter
|
|
237
305
|
def pkcs12(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -331,6 +399,18 @@ class CertificateArgs:
|
|
|
331
399
|
def san_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
332
400
|
pulumi.set(self, "san_uris", value)
|
|
333
401
|
|
|
402
|
+
@property
|
|
403
|
+
@pulumi.getter
|
|
404
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
|
405
|
+
"""
|
|
406
|
+
State of the certificate (S)
|
|
407
|
+
"""
|
|
408
|
+
return pulumi.get(self, "state")
|
|
409
|
+
|
|
410
|
+
@state.setter
|
|
411
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
|
412
|
+
pulumi.set(self, "state", value)
|
|
413
|
+
|
|
334
414
|
@property
|
|
335
415
|
@pulumi.getter(name="validDays")
|
|
336
416
|
def valid_days(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -353,6 +433,7 @@ class _CertificateState:
|
|
|
353
433
|
certificate_id: Optional[pulumi.Input[str]] = None,
|
|
354
434
|
chain: Optional[pulumi.Input[str]] = None,
|
|
355
435
|
common_name: Optional[pulumi.Input[str]] = None,
|
|
436
|
+
country: Optional[pulumi.Input[str]] = None,
|
|
356
437
|
csr_origin: Optional[pulumi.Input[str]] = None,
|
|
357
438
|
csr_pem: Optional[pulumi.Input[str]] = None,
|
|
358
439
|
custom_fields: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -360,7 +441,10 @@ class _CertificateState:
|
|
|
360
441
|
expiration_window: Optional[pulumi.Input[int]] = None,
|
|
361
442
|
issuer_hint: Optional[pulumi.Input[str]] = None,
|
|
362
443
|
key_password: Optional[pulumi.Input[str]] = None,
|
|
444
|
+
locality: Optional[pulumi.Input[str]] = None,
|
|
363
445
|
nickname: Optional[pulumi.Input[str]] = None,
|
|
446
|
+
organization: Optional[pulumi.Input[str]] = None,
|
|
447
|
+
organizational_units: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
364
448
|
pkcs12: Optional[pulumi.Input[str]] = None,
|
|
365
449
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
|
366
450
|
renew_required: Optional[pulumi.Input[bool]] = None,
|
|
@@ -369,6 +453,7 @@ class _CertificateState:
|
|
|
369
453
|
san_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
370
454
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
371
455
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
456
|
+
state: Optional[pulumi.Input[str]] = None,
|
|
372
457
|
valid_days: Optional[pulumi.Input[int]] = None):
|
|
373
458
|
"""
|
|
374
459
|
Input properties used for looking up and filtering Certificate resources.
|
|
@@ -377,6 +462,7 @@ class _CertificateState:
|
|
|
377
462
|
:param pulumi.Input[str] certificate_id: ID of the issued certificate
|
|
378
463
|
:param pulumi.Input[str] chain: The trust chain of X509 certificate authority certificates in PEM format concatenated together.
|
|
379
464
|
:param pulumi.Input[str] common_name: The common name of the certificate.
|
|
465
|
+
:param pulumi.Input[str] country: Country of the certificate (C)
|
|
380
466
|
:param pulumi.Input[str] csr_origin: Whether key-pair generation will be `local` or `service` generated. Default is
|
|
381
467
|
`local`.
|
|
382
468
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_fields: Collection of Custom Field name-value pairs to assign to the certificate.
|
|
@@ -386,8 +472,11 @@ class _CertificateState:
|
|
|
386
472
|
:param pulumi.Input[str] issuer_hint: Used with `valid_days` to indicate the target issuer when using Trust Protection
|
|
387
473
|
Platform. Relevant values are: `DigiCert`, `Entrust`, and `Microsoft`.
|
|
388
474
|
:param pulumi.Input[str] key_password: The password used to encrypt the private key.
|
|
475
|
+
:param pulumi.Input[str] locality: Locality/City of the certificate (L)
|
|
389
476
|
:param pulumi.Input[str] nickname: Use to specify a name for the new certificate object that will be created and placed
|
|
390
477
|
in a policy. Only valid for Trust Protection Platform.
|
|
478
|
+
:param pulumi.Input[str] organization: Organization of the certificate (O)
|
|
479
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] organizational_units: List of Organizational Units of the certificate (OU)
|
|
391
480
|
:param pulumi.Input[str] pkcs12: A base64-encoded PKCS#12 keystore secured by the `key_password`. Useful when working with resources like
|
|
392
481
|
azure key_vault_certificate.
|
|
393
482
|
:param pulumi.Input[str] private_key_pem: The private key in PEM format.
|
|
@@ -399,6 +488,7 @@ class _CertificateState:
|
|
|
399
488
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_ips: List of IP addresses to use as alternative subjects of the certificate.
|
|
400
489
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
401
490
|
the certificate.
|
|
491
|
+
:param pulumi.Input[str] state: State of the certificate (S)
|
|
402
492
|
:param pulumi.Input[int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
403
493
|
"""
|
|
404
494
|
if algorithm is not None:
|
|
@@ -413,6 +503,8 @@ class _CertificateState:
|
|
|
413
503
|
pulumi.set(__self__, "chain", chain)
|
|
414
504
|
if common_name is not None:
|
|
415
505
|
pulumi.set(__self__, "common_name", common_name)
|
|
506
|
+
if country is not None:
|
|
507
|
+
pulumi.set(__self__, "country", country)
|
|
416
508
|
if csr_origin is not None:
|
|
417
509
|
pulumi.set(__self__, "csr_origin", csr_origin)
|
|
418
510
|
if csr_pem is not None:
|
|
@@ -427,8 +519,14 @@ class _CertificateState:
|
|
|
427
519
|
pulumi.set(__self__, "issuer_hint", issuer_hint)
|
|
428
520
|
if key_password is not None:
|
|
429
521
|
pulumi.set(__self__, "key_password", key_password)
|
|
522
|
+
if locality is not None:
|
|
523
|
+
pulumi.set(__self__, "locality", locality)
|
|
430
524
|
if nickname is not None:
|
|
431
525
|
pulumi.set(__self__, "nickname", nickname)
|
|
526
|
+
if organization is not None:
|
|
527
|
+
pulumi.set(__self__, "organization", organization)
|
|
528
|
+
if organizational_units is not None:
|
|
529
|
+
pulumi.set(__self__, "organizational_units", organizational_units)
|
|
432
530
|
if pkcs12 is not None:
|
|
433
531
|
pulumi.set(__self__, "pkcs12", pkcs12)
|
|
434
532
|
if private_key_pem is not None:
|
|
@@ -445,6 +543,8 @@ class _CertificateState:
|
|
|
445
543
|
pulumi.set(__self__, "san_ips", san_ips)
|
|
446
544
|
if san_uris is not None:
|
|
447
545
|
pulumi.set(__self__, "san_uris", san_uris)
|
|
546
|
+
if state is not None:
|
|
547
|
+
pulumi.set(__self__, "state", state)
|
|
448
548
|
if valid_days is not None:
|
|
449
549
|
pulumi.set(__self__, "valid_days", valid_days)
|
|
450
550
|
|
|
@@ -517,6 +617,18 @@ class _CertificateState:
|
|
|
517
617
|
def common_name(self, value: Optional[pulumi.Input[str]]):
|
|
518
618
|
pulumi.set(self, "common_name", value)
|
|
519
619
|
|
|
620
|
+
@property
|
|
621
|
+
@pulumi.getter
|
|
622
|
+
def country(self) -> Optional[pulumi.Input[str]]:
|
|
623
|
+
"""
|
|
624
|
+
Country of the certificate (C)
|
|
625
|
+
"""
|
|
626
|
+
return pulumi.get(self, "country")
|
|
627
|
+
|
|
628
|
+
@country.setter
|
|
629
|
+
def country(self, value: Optional[pulumi.Input[str]]):
|
|
630
|
+
pulumi.set(self, "country", value)
|
|
631
|
+
|
|
520
632
|
@property
|
|
521
633
|
@pulumi.getter(name="csrOrigin")
|
|
522
634
|
def csr_origin(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -601,6 +713,18 @@ class _CertificateState:
|
|
|
601
713
|
def key_password(self, value: Optional[pulumi.Input[str]]):
|
|
602
714
|
pulumi.set(self, "key_password", value)
|
|
603
715
|
|
|
716
|
+
@property
|
|
717
|
+
@pulumi.getter
|
|
718
|
+
def locality(self) -> Optional[pulumi.Input[str]]:
|
|
719
|
+
"""
|
|
720
|
+
Locality/City of the certificate (L)
|
|
721
|
+
"""
|
|
722
|
+
return pulumi.get(self, "locality")
|
|
723
|
+
|
|
724
|
+
@locality.setter
|
|
725
|
+
def locality(self, value: Optional[pulumi.Input[str]]):
|
|
726
|
+
pulumi.set(self, "locality", value)
|
|
727
|
+
|
|
604
728
|
@property
|
|
605
729
|
@pulumi.getter
|
|
606
730
|
def nickname(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -614,6 +738,30 @@ class _CertificateState:
|
|
|
614
738
|
def nickname(self, value: Optional[pulumi.Input[str]]):
|
|
615
739
|
pulumi.set(self, "nickname", value)
|
|
616
740
|
|
|
741
|
+
@property
|
|
742
|
+
@pulumi.getter
|
|
743
|
+
def organization(self) -> Optional[pulumi.Input[str]]:
|
|
744
|
+
"""
|
|
745
|
+
Organization of the certificate (O)
|
|
746
|
+
"""
|
|
747
|
+
return pulumi.get(self, "organization")
|
|
748
|
+
|
|
749
|
+
@organization.setter
|
|
750
|
+
def organization(self, value: Optional[pulumi.Input[str]]):
|
|
751
|
+
pulumi.set(self, "organization", value)
|
|
752
|
+
|
|
753
|
+
@property
|
|
754
|
+
@pulumi.getter(name="organizationalUnits")
|
|
755
|
+
def organizational_units(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
756
|
+
"""
|
|
757
|
+
List of Organizational Units of the certificate (OU)
|
|
758
|
+
"""
|
|
759
|
+
return pulumi.get(self, "organizational_units")
|
|
760
|
+
|
|
761
|
+
@organizational_units.setter
|
|
762
|
+
def organizational_units(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
763
|
+
pulumi.set(self, "organizational_units", value)
|
|
764
|
+
|
|
617
765
|
@property
|
|
618
766
|
@pulumi.getter
|
|
619
767
|
def pkcs12(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -713,6 +861,18 @@ class _CertificateState:
|
|
|
713
861
|
def san_uris(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
714
862
|
pulumi.set(self, "san_uris", value)
|
|
715
863
|
|
|
864
|
+
@property
|
|
865
|
+
@pulumi.getter
|
|
866
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
|
867
|
+
"""
|
|
868
|
+
State of the certificate (S)
|
|
869
|
+
"""
|
|
870
|
+
return pulumi.get(self, "state")
|
|
871
|
+
|
|
872
|
+
@state.setter
|
|
873
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
|
874
|
+
pulumi.set(self, "state", value)
|
|
875
|
+
|
|
716
876
|
@property
|
|
717
877
|
@pulumi.getter(name="validDays")
|
|
718
878
|
def valid_days(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -734,6 +894,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
734
894
|
algorithm: Optional[pulumi.Input[str]] = None,
|
|
735
895
|
certificate_dn: Optional[pulumi.Input[str]] = None,
|
|
736
896
|
common_name: Optional[pulumi.Input[str]] = None,
|
|
897
|
+
country: Optional[pulumi.Input[str]] = None,
|
|
737
898
|
csr_origin: Optional[pulumi.Input[str]] = None,
|
|
738
899
|
csr_pem: Optional[pulumi.Input[str]] = None,
|
|
739
900
|
custom_fields: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -741,7 +902,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
741
902
|
expiration_window: Optional[pulumi.Input[int]] = None,
|
|
742
903
|
issuer_hint: Optional[pulumi.Input[str]] = None,
|
|
743
904
|
key_password: Optional[pulumi.Input[str]] = None,
|
|
905
|
+
locality: Optional[pulumi.Input[str]] = None,
|
|
744
906
|
nickname: Optional[pulumi.Input[str]] = None,
|
|
907
|
+
organization: Optional[pulumi.Input[str]] = None,
|
|
908
|
+
organizational_units: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
745
909
|
pkcs12: Optional[pulumi.Input[str]] = None,
|
|
746
910
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
|
747
911
|
renew_required: Optional[pulumi.Input[bool]] = None,
|
|
@@ -750,6 +914,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
750
914
|
san_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
751
915
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
752
916
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
917
|
+
state: Optional[pulumi.Input[str]] = None,
|
|
753
918
|
valid_days: Optional[pulumi.Input[int]] = None,
|
|
754
919
|
__props__=None):
|
|
755
920
|
"""
|
|
@@ -758,6 +923,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
758
923
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
759
924
|
:param pulumi.Input[str] algorithm: Key encryption algorithm, either RSA or ECDSA. Defaults to `RSA`.
|
|
760
925
|
:param pulumi.Input[str] common_name: The common name of the certificate.
|
|
926
|
+
:param pulumi.Input[str] country: Country of the certificate (C)
|
|
761
927
|
:param pulumi.Input[str] csr_origin: Whether key-pair generation will be `local` or `service` generated. Default is
|
|
762
928
|
`local`.
|
|
763
929
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_fields: Collection of Custom Field name-value pairs to assign to the certificate.
|
|
@@ -767,8 +933,11 @@ class Certificate(pulumi.CustomResource):
|
|
|
767
933
|
:param pulumi.Input[str] issuer_hint: Used with `valid_days` to indicate the target issuer when using Trust Protection
|
|
768
934
|
Platform. Relevant values are: `DigiCert`, `Entrust`, and `Microsoft`.
|
|
769
935
|
:param pulumi.Input[str] key_password: The password used to encrypt the private key.
|
|
936
|
+
:param pulumi.Input[str] locality: Locality/City of the certificate (L)
|
|
770
937
|
:param pulumi.Input[str] nickname: Use to specify a name for the new certificate object that will be created and placed
|
|
771
938
|
in a policy. Only valid for Trust Protection Platform.
|
|
939
|
+
:param pulumi.Input[str] organization: Organization of the certificate (O)
|
|
940
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] organizational_units: List of Organizational Units of the certificate (OU)
|
|
772
941
|
:param pulumi.Input[str] pkcs12: A base64-encoded PKCS#12 keystore secured by the `key_password`. Useful when working with resources like
|
|
773
942
|
azure key_vault_certificate.
|
|
774
943
|
:param pulumi.Input[str] private_key_pem: The private key in PEM format.
|
|
@@ -780,6 +949,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
780
949
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_ips: List of IP addresses to use as alternative subjects of the certificate.
|
|
781
950
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
782
951
|
the certificate.
|
|
952
|
+
:param pulumi.Input[str] state: State of the certificate (S)
|
|
783
953
|
:param pulumi.Input[int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
784
954
|
"""
|
|
785
955
|
...
|
|
@@ -808,6 +978,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
808
978
|
algorithm: Optional[pulumi.Input[str]] = None,
|
|
809
979
|
certificate_dn: Optional[pulumi.Input[str]] = None,
|
|
810
980
|
common_name: Optional[pulumi.Input[str]] = None,
|
|
981
|
+
country: Optional[pulumi.Input[str]] = None,
|
|
811
982
|
csr_origin: Optional[pulumi.Input[str]] = None,
|
|
812
983
|
csr_pem: Optional[pulumi.Input[str]] = None,
|
|
813
984
|
custom_fields: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -815,7 +986,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
815
986
|
expiration_window: Optional[pulumi.Input[int]] = None,
|
|
816
987
|
issuer_hint: Optional[pulumi.Input[str]] = None,
|
|
817
988
|
key_password: Optional[pulumi.Input[str]] = None,
|
|
989
|
+
locality: Optional[pulumi.Input[str]] = None,
|
|
818
990
|
nickname: Optional[pulumi.Input[str]] = None,
|
|
991
|
+
organization: Optional[pulumi.Input[str]] = None,
|
|
992
|
+
organizational_units: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
819
993
|
pkcs12: Optional[pulumi.Input[str]] = None,
|
|
820
994
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
|
821
995
|
renew_required: Optional[pulumi.Input[bool]] = None,
|
|
@@ -824,6 +998,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
824
998
|
san_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
825
999
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
826
1000
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1001
|
+
state: Optional[pulumi.Input[str]] = None,
|
|
827
1002
|
valid_days: Optional[pulumi.Input[int]] = None,
|
|
828
1003
|
__props__=None):
|
|
829
1004
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -839,6 +1014,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
839
1014
|
if common_name is None and not opts.urn:
|
|
840
1015
|
raise TypeError("Missing required property 'common_name'")
|
|
841
1016
|
__props__.__dict__["common_name"] = common_name
|
|
1017
|
+
__props__.__dict__["country"] = country
|
|
842
1018
|
__props__.__dict__["csr_origin"] = csr_origin
|
|
843
1019
|
__props__.__dict__["csr_pem"] = csr_pem
|
|
844
1020
|
__props__.__dict__["custom_fields"] = custom_fields
|
|
@@ -846,7 +1022,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
846
1022
|
__props__.__dict__["expiration_window"] = expiration_window
|
|
847
1023
|
__props__.__dict__["issuer_hint"] = issuer_hint
|
|
848
1024
|
__props__.__dict__["key_password"] = None if key_password is None else pulumi.Output.secret(key_password)
|
|
1025
|
+
__props__.__dict__["locality"] = locality
|
|
849
1026
|
__props__.__dict__["nickname"] = nickname
|
|
1027
|
+
__props__.__dict__["organization"] = organization
|
|
1028
|
+
__props__.__dict__["organizational_units"] = organizational_units
|
|
850
1029
|
__props__.__dict__["pkcs12"] = pkcs12
|
|
851
1030
|
__props__.__dict__["private_key_pem"] = None if private_key_pem is None else pulumi.Output.secret(private_key_pem)
|
|
852
1031
|
__props__.__dict__["renew_required"] = renew_required
|
|
@@ -855,6 +1034,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
855
1034
|
__props__.__dict__["san_emails"] = san_emails
|
|
856
1035
|
__props__.__dict__["san_ips"] = san_ips
|
|
857
1036
|
__props__.__dict__["san_uris"] = san_uris
|
|
1037
|
+
__props__.__dict__["state"] = state
|
|
858
1038
|
__props__.__dict__["valid_days"] = valid_days
|
|
859
1039
|
__props__.__dict__["certificate"] = None
|
|
860
1040
|
__props__.__dict__["certificate_id"] = None
|
|
@@ -877,6 +1057,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
877
1057
|
certificate_id: Optional[pulumi.Input[str]] = None,
|
|
878
1058
|
chain: Optional[pulumi.Input[str]] = None,
|
|
879
1059
|
common_name: Optional[pulumi.Input[str]] = None,
|
|
1060
|
+
country: Optional[pulumi.Input[str]] = None,
|
|
880
1061
|
csr_origin: Optional[pulumi.Input[str]] = None,
|
|
881
1062
|
csr_pem: Optional[pulumi.Input[str]] = None,
|
|
882
1063
|
custom_fields: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
@@ -884,7 +1065,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
884
1065
|
expiration_window: Optional[pulumi.Input[int]] = None,
|
|
885
1066
|
issuer_hint: Optional[pulumi.Input[str]] = None,
|
|
886
1067
|
key_password: Optional[pulumi.Input[str]] = None,
|
|
1068
|
+
locality: Optional[pulumi.Input[str]] = None,
|
|
887
1069
|
nickname: Optional[pulumi.Input[str]] = None,
|
|
1070
|
+
organization: Optional[pulumi.Input[str]] = None,
|
|
1071
|
+
organizational_units: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
888
1072
|
pkcs12: Optional[pulumi.Input[str]] = None,
|
|
889
1073
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
|
890
1074
|
renew_required: Optional[pulumi.Input[bool]] = None,
|
|
@@ -893,6 +1077,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
893
1077
|
san_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
894
1078
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
895
1079
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1080
|
+
state: Optional[pulumi.Input[str]] = None,
|
|
896
1081
|
valid_days: Optional[pulumi.Input[int]] = None) -> 'Certificate':
|
|
897
1082
|
"""
|
|
898
1083
|
Get an existing Certificate resource's state with the given name, id, and optional extra
|
|
@@ -906,6 +1091,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
906
1091
|
:param pulumi.Input[str] certificate_id: ID of the issued certificate
|
|
907
1092
|
:param pulumi.Input[str] chain: The trust chain of X509 certificate authority certificates in PEM format concatenated together.
|
|
908
1093
|
:param pulumi.Input[str] common_name: The common name of the certificate.
|
|
1094
|
+
:param pulumi.Input[str] country: Country of the certificate (C)
|
|
909
1095
|
:param pulumi.Input[str] csr_origin: Whether key-pair generation will be `local` or `service` generated. Default is
|
|
910
1096
|
`local`.
|
|
911
1097
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] custom_fields: Collection of Custom Field name-value pairs to assign to the certificate.
|
|
@@ -915,8 +1101,11 @@ class Certificate(pulumi.CustomResource):
|
|
|
915
1101
|
:param pulumi.Input[str] issuer_hint: Used with `valid_days` to indicate the target issuer when using Trust Protection
|
|
916
1102
|
Platform. Relevant values are: `DigiCert`, `Entrust`, and `Microsoft`.
|
|
917
1103
|
:param pulumi.Input[str] key_password: The password used to encrypt the private key.
|
|
1104
|
+
:param pulumi.Input[str] locality: Locality/City of the certificate (L)
|
|
918
1105
|
:param pulumi.Input[str] nickname: Use to specify a name for the new certificate object that will be created and placed
|
|
919
1106
|
in a policy. Only valid for Trust Protection Platform.
|
|
1107
|
+
:param pulumi.Input[str] organization: Organization of the certificate (O)
|
|
1108
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] organizational_units: List of Organizational Units of the certificate (OU)
|
|
920
1109
|
:param pulumi.Input[str] pkcs12: A base64-encoded PKCS#12 keystore secured by the `key_password`. Useful when working with resources like
|
|
921
1110
|
azure key_vault_certificate.
|
|
922
1111
|
:param pulumi.Input[str] private_key_pem: The private key in PEM format.
|
|
@@ -928,6 +1117,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
928
1117
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_ips: List of IP addresses to use as alternative subjects of the certificate.
|
|
929
1118
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
930
1119
|
the certificate.
|
|
1120
|
+
:param pulumi.Input[str] state: State of the certificate (S)
|
|
931
1121
|
:param pulumi.Input[int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
932
1122
|
"""
|
|
933
1123
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -940,6 +1130,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
940
1130
|
__props__.__dict__["certificate_id"] = certificate_id
|
|
941
1131
|
__props__.__dict__["chain"] = chain
|
|
942
1132
|
__props__.__dict__["common_name"] = common_name
|
|
1133
|
+
__props__.__dict__["country"] = country
|
|
943
1134
|
__props__.__dict__["csr_origin"] = csr_origin
|
|
944
1135
|
__props__.__dict__["csr_pem"] = csr_pem
|
|
945
1136
|
__props__.__dict__["custom_fields"] = custom_fields
|
|
@@ -947,7 +1138,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
947
1138
|
__props__.__dict__["expiration_window"] = expiration_window
|
|
948
1139
|
__props__.__dict__["issuer_hint"] = issuer_hint
|
|
949
1140
|
__props__.__dict__["key_password"] = key_password
|
|
1141
|
+
__props__.__dict__["locality"] = locality
|
|
950
1142
|
__props__.__dict__["nickname"] = nickname
|
|
1143
|
+
__props__.__dict__["organization"] = organization
|
|
1144
|
+
__props__.__dict__["organizational_units"] = organizational_units
|
|
951
1145
|
__props__.__dict__["pkcs12"] = pkcs12
|
|
952
1146
|
__props__.__dict__["private_key_pem"] = private_key_pem
|
|
953
1147
|
__props__.__dict__["renew_required"] = renew_required
|
|
@@ -956,6 +1150,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
956
1150
|
__props__.__dict__["san_emails"] = san_emails
|
|
957
1151
|
__props__.__dict__["san_ips"] = san_ips
|
|
958
1152
|
__props__.__dict__["san_uris"] = san_uris
|
|
1153
|
+
__props__.__dict__["state"] = state
|
|
959
1154
|
__props__.__dict__["valid_days"] = valid_days
|
|
960
1155
|
return Certificate(resource_name, opts=opts, __props__=__props__)
|
|
961
1156
|
|
|
@@ -1004,6 +1199,14 @@ class Certificate(pulumi.CustomResource):
|
|
|
1004
1199
|
"""
|
|
1005
1200
|
return pulumi.get(self, "common_name")
|
|
1006
1201
|
|
|
1202
|
+
@property
|
|
1203
|
+
@pulumi.getter
|
|
1204
|
+
def country(self) -> pulumi.Output[Optional[str]]:
|
|
1205
|
+
"""
|
|
1206
|
+
Country of the certificate (C)
|
|
1207
|
+
"""
|
|
1208
|
+
return pulumi.get(self, "country")
|
|
1209
|
+
|
|
1007
1210
|
@property
|
|
1008
1211
|
@pulumi.getter(name="csrOrigin")
|
|
1009
1212
|
def csr_origin(self) -> pulumi.Output[Optional[str]]:
|
|
@@ -1060,6 +1263,14 @@ class Certificate(pulumi.CustomResource):
|
|
|
1060
1263
|
"""
|
|
1061
1264
|
return pulumi.get(self, "key_password")
|
|
1062
1265
|
|
|
1266
|
+
@property
|
|
1267
|
+
@pulumi.getter
|
|
1268
|
+
def locality(self) -> pulumi.Output[Optional[str]]:
|
|
1269
|
+
"""
|
|
1270
|
+
Locality/City of the certificate (L)
|
|
1271
|
+
"""
|
|
1272
|
+
return pulumi.get(self, "locality")
|
|
1273
|
+
|
|
1063
1274
|
@property
|
|
1064
1275
|
@pulumi.getter
|
|
1065
1276
|
def nickname(self) -> pulumi.Output[Optional[str]]:
|
|
@@ -1069,6 +1280,22 @@ class Certificate(pulumi.CustomResource):
|
|
|
1069
1280
|
"""
|
|
1070
1281
|
return pulumi.get(self, "nickname")
|
|
1071
1282
|
|
|
1283
|
+
@property
|
|
1284
|
+
@pulumi.getter
|
|
1285
|
+
def organization(self) -> pulumi.Output[Optional[str]]:
|
|
1286
|
+
"""
|
|
1287
|
+
Organization of the certificate (O)
|
|
1288
|
+
"""
|
|
1289
|
+
return pulumi.get(self, "organization")
|
|
1290
|
+
|
|
1291
|
+
@property
|
|
1292
|
+
@pulumi.getter(name="organizationalUnits")
|
|
1293
|
+
def organizational_units(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1294
|
+
"""
|
|
1295
|
+
List of Organizational Units of the certificate (OU)
|
|
1296
|
+
"""
|
|
1297
|
+
return pulumi.get(self, "organizational_units")
|
|
1298
|
+
|
|
1072
1299
|
@property
|
|
1073
1300
|
@pulumi.getter
|
|
1074
1301
|
def pkcs12(self) -> pulumi.Output[str]:
|
|
@@ -1136,6 +1363,14 @@ class Certificate(pulumi.CustomResource):
|
|
|
1136
1363
|
"""
|
|
1137
1364
|
return pulumi.get(self, "san_uris")
|
|
1138
1365
|
|
|
1366
|
+
@property
|
|
1367
|
+
@pulumi.getter
|
|
1368
|
+
def state(self) -> pulumi.Output[Optional[str]]:
|
|
1369
|
+
"""
|
|
1370
|
+
State of the certificate (S)
|
|
1371
|
+
"""
|
|
1372
|
+
return pulumi.get(self, "state")
|
|
1373
|
+
|
|
1139
1374
|
@property
|
|
1140
1375
|
@pulumi.getter(name="validDays")
|
|
1141
1376
|
def valid_days(self) -> pulumi.Output[Optional[int]]:
|
|
@@ -94,8 +94,8 @@ class _CloudKeystoreInstallationState:
|
|
|
94
94
|
Input properties used for looking up and filtering CloudKeystoreInstallation resources.
|
|
95
95
|
:param pulumi.Input[str] arn: ARN of the AWS certificate. Use it to provision the VCP certificate to an existing ACM certificate, instead of a new one. Only valid for ACM keystores.
|
|
96
96
|
:param pulumi.Input[str] certificate_id: ID of the certificate to be provisioned to the given `keystore_id`.
|
|
97
|
-
:param pulumi.Input[str] cloud_certificate_id: ID of the certificate
|
|
98
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] cloud_certificate_metadata: Metadata of the certificate
|
|
97
|
+
:param pulumi.Input[str] cloud_certificate_id: The ID of the provisioned certificate within the Cloud Keystore
|
|
98
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] cloud_certificate_metadata: Metadata of the provisioned certificate from the Cloud Keystore
|
|
99
99
|
:param pulumi.Input[str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
100
100
|
:param pulumi.Input[str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
101
101
|
"""
|
|
@@ -140,7 +140,7 @@ class _CloudKeystoreInstallationState:
|
|
|
140
140
|
@pulumi.getter(name="cloudCertificateId")
|
|
141
141
|
def cloud_certificate_id(self) -> Optional[pulumi.Input[str]]:
|
|
142
142
|
"""
|
|
143
|
-
ID of the certificate
|
|
143
|
+
The ID of the provisioned certificate within the Cloud Keystore
|
|
144
144
|
"""
|
|
145
145
|
return pulumi.get(self, "cloud_certificate_id")
|
|
146
146
|
|
|
@@ -152,7 +152,7 @@ class _CloudKeystoreInstallationState:
|
|
|
152
152
|
@pulumi.getter(name="cloudCertificateMetadata")
|
|
153
153
|
def cloud_certificate_metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
154
154
|
"""
|
|
155
|
-
Metadata of the certificate
|
|
155
|
+
Metadata of the provisioned certificate from the Cloud Keystore
|
|
156
156
|
"""
|
|
157
157
|
return pulumi.get(self, "cloud_certificate_metadata")
|
|
158
158
|
|
|
@@ -337,8 +337,8 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
337
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
338
338
|
:param pulumi.Input[str] arn: ARN of the AWS certificate. Use it to provision the VCP certificate to an existing ACM certificate, instead of a new one. Only valid for ACM keystores.
|
|
339
339
|
:param pulumi.Input[str] certificate_id: ID of the certificate to be provisioned to the given `keystore_id`.
|
|
340
|
-
:param pulumi.Input[str] cloud_certificate_id: ID of the certificate
|
|
341
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] cloud_certificate_metadata: Metadata of the certificate
|
|
340
|
+
:param pulumi.Input[str] cloud_certificate_id: The ID of the provisioned certificate within the Cloud Keystore
|
|
341
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] cloud_certificate_metadata: Metadata of the provisioned certificate from the Cloud Keystore
|
|
342
342
|
:param pulumi.Input[str] cloud_certificate_name: Name for the provisioned certificate in the keystore. If the name already exists, the provisioning will replace the previous certificate with the one from `certificate_id`. Only valid for AKV and GCM keystores.
|
|
343
343
|
:param pulumi.Input[str] cloud_keystore_id: ID of the cloud keystore where the certificate will be provisioned.
|
|
344
344
|
"""
|
|
@@ -374,7 +374,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
374
374
|
@pulumi.getter(name="cloudCertificateId")
|
|
375
375
|
def cloud_certificate_id(self) -> pulumi.Output[str]:
|
|
376
376
|
"""
|
|
377
|
-
ID of the certificate
|
|
377
|
+
The ID of the provisioned certificate within the Cloud Keystore
|
|
378
378
|
"""
|
|
379
379
|
return pulumi.get(self, "cloud_certificate_id")
|
|
380
380
|
|
|
@@ -382,7 +382,7 @@ class CloudKeystoreInstallation(pulumi.CustomResource):
|
|
|
382
382
|
@pulumi.getter(name="cloudCertificateMetadata")
|
|
383
383
|
def cloud_certificate_metadata(self) -> pulumi.Output[Mapping[str, str]]:
|
|
384
384
|
"""
|
|
385
|
-
Metadata of the certificate
|
|
385
|
+
Metadata of the provisioned certificate from the Cloud Keystore
|
|
386
386
|
"""
|
|
387
387
|
return pulumi.get(self, "cloud_certificate_metadata")
|
|
388
388
|
|
pulumi_venafi/pulumi-plugin.json
CHANGED
{pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/RECORD
RENAMED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
pulumi_venafi/__init__.py,sha256=h34J0B4E1v2um3rbsc0yu3ambi9FGoY4e_Js6aMydbc,1729
|
|
2
2
|
pulumi_venafi/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
3
|
-
pulumi_venafi/certificate.py,sha256=
|
|
4
|
-
pulumi_venafi/cloud_keystore_installation.py,sha256=
|
|
3
|
+
pulumi_venafi/certificate.py,sha256=WzPplzp0xCAsYQhLVhPfOZkfbTgPicBe1o27QaGcJzo,61764
|
|
4
|
+
pulumi_venafi/cloud_keystore_installation.py,sha256=cPj2PwsJVo5XoVCQq8MxwDzSELMjNEGlgiA0mbZKQ-A,20342
|
|
5
5
|
pulumi_venafi/get_cloud_keystore.py,sha256=aw4FzRWiAjqd6cL6uLNxgvM4CcUu9ACihSpwWuBhcsY,6020
|
|
6
6
|
pulumi_venafi/get_cloud_provider.py,sha256=qy_2URgVXbxWv5_jzPhKhCT-W6Uf0vP2zEVefjoSB7I,5196
|
|
7
7
|
pulumi_venafi/policy.py,sha256=odTCXTwDiK3mwyseq8eQJF0MK1ujLmTbTxdTqKCwVyM,11710
|
|
8
8
|
pulumi_venafi/provider.py,sha256=TZdyuOHxxVl-yEW42KeN5hU2kwVk1Npgn_fGnHT0CFg,22873
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=PodxfUyuVo9oeSYuP99seUMXVoE-xpb9n57TgIm9r5E,83
|
|
10
10
|
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
pulumi_venafi/ssh_certificate.py,sha256=6tS-vkXDX1v4aKX-_N_h8q8LxZzOfKqv01mPp-KcLeU,53984
|
|
12
12
|
pulumi_venafi/ssh_config.py,sha256=zxJo5UApIkahFvRBLr5NWAT8wGS6Or3gx1Lou7veZL8,8506
|
|
13
13
|
pulumi_venafi/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
14
14
|
pulumi_venafi/config/__init__.pyi,sha256=ArjhKcR2G_bxDyvTXd8bDfxqYNAj6ncK0gX1L9G0gN4,2124
|
|
15
15
|
pulumi_venafi/config/vars.py,sha256=T48hvISX3CCZyaJte_5e-u6YhwD9qChzeTS8G_NKfuE,3633
|
|
16
|
-
pulumi_venafi-1.11.
|
|
17
|
-
pulumi_venafi-1.11.
|
|
18
|
-
pulumi_venafi-1.11.
|
|
19
|
-
pulumi_venafi-1.11.
|
|
16
|
+
pulumi_venafi-1.11.0a1726294080.dist-info/METADATA,sha256=6DY3KfykNN1PAyGMmvKsQ5XrtPd9KjqnkoEkvUBcmG0,3611
|
|
17
|
+
pulumi_venafi-1.11.0a1726294080.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
18
|
+
pulumi_venafi-1.11.0a1726294080.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.11.0a1726294080.dist-info/RECORD,,
|
{pulumi_venafi-1.11.0a1726035047.dist-info → pulumi_venafi-1.11.0a1726294080.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|