pulumi-tls 5.0.3__py3-none-any.whl → 5.0.4__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.
- pulumi_tls/_utilities.py +35 -0
- pulumi_tls/locally_signed_cert.py +0 -41
- pulumi_tls/pulumi-plugin.json +2 -1
- pulumi_tls/self_signed_cert.py +0 -41
- {pulumi_tls-5.0.3.dist-info → pulumi_tls-5.0.4.dist-info}/METADATA +1 -1
- {pulumi_tls-5.0.3.dist-info → pulumi_tls-5.0.4.dist-info}/RECORD +8 -8
- {pulumi_tls-5.0.3.dist-info → pulumi_tls-5.0.4.dist-info}/WHEEL +1 -1
- {pulumi_tls-5.0.3.dist-info → pulumi_tls-5.0.4.dist-info}/top_level.txt +0 -0
pulumi_tls/_utilities.py
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
import asyncio
|
7
|
+
import functools
|
7
8
|
import importlib.metadata
|
8
9
|
import importlib.util
|
9
10
|
import inspect
|
@@ -11,6 +12,7 @@ import json
|
|
11
12
|
import os
|
12
13
|
import sys
|
13
14
|
import typing
|
15
|
+
import warnings
|
14
16
|
|
15
17
|
import pulumi
|
16
18
|
import pulumi.runtime
|
@@ -19,6 +21,8 @@ from pulumi.runtime.sync_await import _sync_await
|
|
19
21
|
from semver import VersionInfo as SemverVersion
|
20
22
|
from parver import Version as PEP440Version
|
21
23
|
|
24
|
+
C = typing.TypeVar("C", bound=typing.Callable)
|
25
|
+
|
22
26
|
|
23
27
|
def get_env(*args):
|
24
28
|
for v in args:
|
@@ -287,5 +291,36 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo
|
|
287
291
|
await o._resources,
|
288
292
|
)
|
289
293
|
|
294
|
+
|
295
|
+
# This is included to provide an upgrade path for users who are using a version
|
296
|
+
# of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator.
|
297
|
+
def deprecated(message: str) -> typing.Callable[[C], C]:
|
298
|
+
"""
|
299
|
+
Decorator to indicate a function is deprecated.
|
300
|
+
|
301
|
+
As well as inserting appropriate statements to indicate that the function is
|
302
|
+
deprecated, this decorator also tags the function with a special attribute
|
303
|
+
so that Pulumi code can detect that it is deprecated and react appropriately
|
304
|
+
in certain situations.
|
305
|
+
|
306
|
+
message is the deprecation message that should be printed if the function is called.
|
307
|
+
"""
|
308
|
+
|
309
|
+
def decorator(fn: C) -> C:
|
310
|
+
if not callable(fn):
|
311
|
+
raise TypeError("Expected fn to be callable")
|
312
|
+
|
313
|
+
@functools.wraps(fn)
|
314
|
+
def deprecated_fn(*args, **kwargs):
|
315
|
+
warnings.warn(message)
|
316
|
+
pulumi.warn(f"{fn.__name__} is deprecated: {message}")
|
317
|
+
|
318
|
+
return fn(*args, **kwargs)
|
319
|
+
|
320
|
+
deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn
|
321
|
+
return typing.cast(C, deprecated_fn)
|
322
|
+
|
323
|
+
return decorator
|
324
|
+
|
290
325
|
def get_plugin_download_url():
|
291
326
|
return None
|
@@ -29,11 +29,6 @@ class LocallySignedCertArgs:
|
|
29
29
|
:param pulumi.Input[str] ca_private_key_pem: Private key of the Certificate Authority (CA) used to sign the certificate, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
30
30
|
:param pulumi.Input[str] cert_request_pem: Certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
31
31
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
32
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
33
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
34
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
35
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
36
|
-
early renewal period. (default: `0`)
|
37
32
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
38
33
|
:param pulumi.Input[bool] set_subject_key_id: Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`).
|
39
34
|
"""
|
@@ -112,13 +107,6 @@ class LocallySignedCertArgs:
|
|
112
107
|
@property
|
113
108
|
@pulumi.getter(name="earlyRenewalHours")
|
114
109
|
def early_renewal_hours(self) -> Optional[pulumi.Input[int]]:
|
115
|
-
"""
|
116
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
117
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
118
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
119
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
120
|
-
early renewal period. (default: `0`)
|
121
|
-
"""
|
122
110
|
return pulumi.get(self, "early_renewal_hours")
|
123
111
|
|
124
112
|
@early_renewal_hours.setter
|
@@ -174,11 +162,6 @@ class _LocallySignedCertState:
|
|
174
162
|
:param pulumi.Input[str] ca_private_key_pem: Private key of the Certificate Authority (CA) used to sign the certificate, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
175
163
|
:param pulumi.Input[str] cert_pem: Certificate data in PEM (RFC 1421).
|
176
164
|
:param pulumi.Input[str] cert_request_pem: Certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
177
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
178
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
179
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
180
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
181
|
-
early renewal period. (default: `0`)
|
182
165
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
183
166
|
:param pulumi.Input[bool] ready_for_renewal: Is the certificate either expired (i.e. beyond the `validity_period_hours`) or ready for an early renewal (i.e. within the `early_renewal_hours`)?
|
184
167
|
:param pulumi.Input[bool] set_subject_key_id: Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`).
|
@@ -288,13 +271,6 @@ class _LocallySignedCertState:
|
|
288
271
|
@property
|
289
272
|
@pulumi.getter(name="earlyRenewalHours")
|
290
273
|
def early_renewal_hours(self) -> Optional[pulumi.Input[int]]:
|
291
|
-
"""
|
292
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
293
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
294
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
295
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
296
|
-
early renewal period. (default: `0`)
|
297
|
-
"""
|
298
274
|
return pulumi.get(self, "early_renewal_hours")
|
299
275
|
|
300
276
|
@early_renewal_hours.setter
|
@@ -396,11 +372,6 @@ class LocallySignedCert(pulumi.CustomResource):
|
|
396
372
|
:param pulumi.Input[str] ca_cert_pem: Certificate data of the Certificate Authority (CA) in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
397
373
|
:param pulumi.Input[str] ca_private_key_pem: Private key of the Certificate Authority (CA) used to sign the certificate, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
398
374
|
:param pulumi.Input[str] cert_request_pem: Certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
399
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
400
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
401
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
402
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
403
|
-
early renewal period. (default: `0`)
|
404
375
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
405
376
|
:param pulumi.Input[bool] set_subject_key_id: Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`).
|
406
377
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
@@ -506,11 +477,6 @@ class LocallySignedCert(pulumi.CustomResource):
|
|
506
477
|
:param pulumi.Input[str] ca_private_key_pem: Private key of the Certificate Authority (CA) used to sign the certificate, in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
507
478
|
:param pulumi.Input[str] cert_pem: Certificate data in PEM (RFC 1421).
|
508
479
|
:param pulumi.Input[str] cert_request_pem: Certificate request data in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format.
|
509
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
510
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
511
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
512
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
513
|
-
early renewal period. (default: `0`)
|
514
480
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
515
481
|
:param pulumi.Input[bool] ready_for_renewal: Is the certificate either expired (i.e. beyond the `validity_period_hours`) or ready for an early renewal (i.e. within the `early_renewal_hours`)?
|
516
482
|
:param pulumi.Input[bool] set_subject_key_id: Should the generated certificate include a [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`).
|
@@ -588,13 +554,6 @@ class LocallySignedCert(pulumi.CustomResource):
|
|
588
554
|
@property
|
589
555
|
@pulumi.getter(name="earlyRenewalHours")
|
590
556
|
def early_renewal_hours(self) -> pulumi.Output[int]:
|
591
|
-
"""
|
592
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
593
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
594
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
595
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
596
|
-
early renewal period. (default: `0`)
|
597
|
-
"""
|
598
557
|
return pulumi.get(self, "early_renewal_hours")
|
599
558
|
|
600
559
|
@property
|
pulumi_tls/pulumi-plugin.json
CHANGED
pulumi_tls/self_signed_cert.py
CHANGED
@@ -33,11 +33,6 @@ class SelfSignedCertArgs:
|
|
33
33
|
:param pulumi.Input[str] private_key_pem: Private key in PEM (RFC 1421) interpolation function.
|
34
34
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
35
35
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
36
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
37
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
38
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
39
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
40
|
-
early renewal period. (default: `0`)
|
41
36
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
42
37
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
43
38
|
:param pulumi.Input[bool] set_authority_key_id: Should the generated certificate include an [authority key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.1): for self-signed certificates this is the same value as the [subject key identifier](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.2) (default: `false`).
|
@@ -116,13 +111,6 @@ class SelfSignedCertArgs:
|
|
116
111
|
@property
|
117
112
|
@pulumi.getter(name="earlyRenewalHours")
|
118
113
|
def early_renewal_hours(self) -> Optional[pulumi.Input[int]]:
|
119
|
-
"""
|
120
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
121
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
122
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
123
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
124
|
-
early renewal period. (default: `0`)
|
125
|
-
"""
|
126
114
|
return pulumi.get(self, "early_renewal_hours")
|
127
115
|
|
128
116
|
@early_renewal_hours.setter
|
@@ -226,11 +214,6 @@ class _SelfSignedCertState:
|
|
226
214
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_uses: List of key usages allowed for the issued certificate. Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.
|
227
215
|
:param pulumi.Input[str] cert_pem: Certificate data in PEM (RFC 1421).
|
228
216
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
229
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
230
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
231
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
232
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
233
|
-
early renewal period. (default: `0`)
|
234
217
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
235
218
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
236
219
|
:param pulumi.Input[str] key_algorithm: Name of the algorithm used when generating the private key provided in `private_key_pem`.
|
@@ -316,13 +299,6 @@ class _SelfSignedCertState:
|
|
316
299
|
@property
|
317
300
|
@pulumi.getter(name="earlyRenewalHours")
|
318
301
|
def early_renewal_hours(self) -> Optional[pulumi.Input[int]]:
|
319
|
-
"""
|
320
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
321
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
322
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
323
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
324
|
-
early renewal period. (default: `0`)
|
325
|
-
"""
|
326
302
|
return pulumi.get(self, "early_renewal_hours")
|
327
303
|
|
328
304
|
@early_renewal_hours.setter
|
@@ -497,11 +473,6 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
497
473
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
498
474
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_uses: List of key usages allowed for the issued certificate. Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.
|
499
475
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
500
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
501
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
502
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
503
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
504
|
-
early renewal period. (default: `0`)
|
505
476
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
506
477
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
507
478
|
:param pulumi.Input[str] private_key_pem: Private key in PEM (RFC 1421) interpolation function.
|
@@ -614,11 +585,6 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
614
585
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_uses: List of key usages allowed for the issued certificate. Values are defined in [RFC 5280](https://datatracker.ietf.org/doc/html/rfc5280) and combine flags defined by both [Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3) and [Extended Key Usages](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12). Accepted values: `any_extended`, `cert_signing`, `client_auth`, `code_signing`, `content_commitment`, `crl_signing`, `data_encipherment`, `decipher_only`, `digital_signature`, `email_protection`, `encipher_only`, `ipsec_end_system`, `ipsec_tunnel`, `ipsec_user`, `key_agreement`, `key_encipherment`, `microsoft_commercial_code_signing`, `microsoft_kernel_code_signing`, `microsoft_server_gated_crypto`, `netscape_server_gated_crypto`, `ocsp_signing`, `server_auth`, `timestamping`.
|
615
586
|
:param pulumi.Input[str] cert_pem: Certificate data in PEM (RFC 1421).
|
616
587
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
617
|
-
:param pulumi.Input[int] early_renewal_hours: The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
618
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
619
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
620
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
621
|
-
early renewal period. (default: `0`)
|
622
588
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
623
589
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
624
590
|
:param pulumi.Input[str] key_algorithm: Name of the algorithm used when generating the private key provided in `private_key_pem`.
|
@@ -681,13 +647,6 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
681
647
|
@property
|
682
648
|
@pulumi.getter(name="earlyRenewalHours")
|
683
649
|
def early_renewal_hours(self) -> pulumi.Output[int]:
|
684
|
-
"""
|
685
|
-
The resource will consider the certificate to have expired the given number of hours before its actual expiry time. This
|
686
|
-
can be useful to deploy an updated certificate in advance of the expiration of the current certificate. However, the old
|
687
|
-
certificate remains valid until its true expiration time, since this resource does not (and cannot) support certificate
|
688
|
-
revocation. Also, this advance update can only be performed should the Terraform configuration be applied during the
|
689
|
-
early renewal period. (default: `0`)
|
690
|
-
"""
|
691
650
|
return pulumi.get(self, "early_renewal_hours")
|
692
651
|
|
693
652
|
@property
|
@@ -1,21 +1,21 @@
|
|
1
1
|
pulumi_tls/__init__.py,sha256=Fk7hjyRIMx42E0iGoNp4d238SBG6PAUxDzvlIndTJck,1523
|
2
2
|
pulumi_tls/_inputs.py,sha256=KVpnu-mvOyzrpVpdrb90KBWDhaN_i67rIkdR3d8qJlw,14351
|
3
|
-
pulumi_tls/_utilities.py,sha256=
|
3
|
+
pulumi_tls/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
|
4
4
|
pulumi_tls/cert_request.py,sha256=IkUPm9Lq9q3WK9d0FbS4NS_F_sSS1T-nkxJB0Hpuzic,20435
|
5
5
|
pulumi_tls/get_certificate.py,sha256=lUy1OLl5oA8GbQnOeVy6F7Sfd8pWSgCnZ1g9gV9Jr30,5540
|
6
6
|
pulumi_tls/get_public_key.py,sha256=9rlku7HjE567b7gQaYv1e7NsuLmkyohuAK62yDBCq2g,10349
|
7
|
-
pulumi_tls/locally_signed_cert.py,sha256=
|
7
|
+
pulumi_tls/locally_signed_cert.py,sha256=EXoB5ayvWq-E6ypbL5MBm5bC3IBXCqdE8ztPR8EG0_8,36895
|
8
8
|
pulumi_tls/outputs.py,sha256=3Yjo4iKbFD4gJQhCGGWwocpCAuS3V-d6nvQ9lseB3Qg,14909
|
9
9
|
pulumi_tls/private_key.py,sha256=l7YLkUhXlp-lLWST8p34AoR0zMI_Dj2qRlQEf8sjMVg,22201
|
10
10
|
pulumi_tls/provider.py,sha256=GAIHbL660HmefqI6S05zA77JT1tVZVpxwSKnONjxqIM,4571
|
11
|
-
pulumi_tls/pulumi-plugin.json,sha256=
|
11
|
+
pulumi_tls/pulumi-plugin.json,sha256=P8LqKvpUaH4ewxQEY0rG46NRoWfIEq6Rm436XNVy95Q,62
|
12
12
|
pulumi_tls/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
pulumi_tls/self_signed_cert.py,sha256=
|
13
|
+
pulumi_tls/self_signed_cert.py,sha256=Yiqt5IbswDJvTiCdwN-jiWgtQgT003puNSAbF3tLVKM,45979
|
14
14
|
pulumi_tls/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
15
15
|
pulumi_tls/config/__init__.pyi,sha256=kaPJpeRs8A7zNA-3MY-QL0zyxMV0oqUrYrsLj3HpqEg,474
|
16
16
|
pulumi_tls/config/outputs.py,sha256=SYfBlhKnqFeIaEpQLFgdBfABD4pzTkAlZTuwWWsGQ4A,2653
|
17
17
|
pulumi_tls/config/vars.py,sha256=wTZ5QbW-pH76tJ5PSA2zAFV4bPdtC5pmxQsV7jRd3c8,661
|
18
|
-
pulumi_tls-5.0.
|
19
|
-
pulumi_tls-5.0.
|
20
|
-
pulumi_tls-5.0.
|
21
|
-
pulumi_tls-5.0.
|
18
|
+
pulumi_tls-5.0.4.dist-info/METADATA,sha256=V8iSxzA7JLM5AmcC-nVSGN_skbKLwsGDSqKVYePAsDo,2416
|
19
|
+
pulumi_tls-5.0.4.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
20
|
+
pulumi_tls-5.0.4.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
|
21
|
+
pulumi_tls-5.0.4.dist-info/RECORD,,
|
File without changes
|