pulumi-tls 5.1.0a1723037966__py3-none-any.whl → 5.1.0a1723820217__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-tls might be problematic. Click here for more details.
- pulumi_tls/cert_request.py +13 -13
- pulumi_tls/provider.py +3 -3
- pulumi_tls/pulumi-plugin.json +1 -1
- pulumi_tls/self_signed_cert.py +5 -5
- {pulumi_tls-5.1.0a1723037966.dist-info → pulumi_tls-5.1.0a1723820217.dist-info}/METADATA +1 -1
- {pulumi_tls-5.1.0a1723037966.dist-info → pulumi_tls-5.1.0a1723820217.dist-info}/RECORD +8 -8
- {pulumi_tls-5.1.0a1723037966.dist-info → pulumi_tls-5.1.0a1723820217.dist-info}/WHEEL +1 -1
- {pulumi_tls-5.1.0a1723037966.dist-info → pulumi_tls-5.1.0a1723820217.dist-info}/top_level.txt +0 -0
pulumi_tls/cert_request.py
CHANGED
@@ -228,7 +228,7 @@ class CertRequest(pulumi.CustomResource):
|
|
228
228
|
dns_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
229
229
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
230
230
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
231
|
-
subject: Optional[pulumi.Input[
|
231
|
+
subject: Optional[pulumi.Input[Union['CertRequestSubjectArgs', 'CertRequestSubjectArgsDict']]] = None,
|
232
232
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
233
233
|
__props__=None):
|
234
234
|
"""
|
@@ -241,10 +241,10 @@ class CertRequest(pulumi.CustomResource):
|
|
241
241
|
|
242
242
|
example = tls.CertRequest("example",
|
243
243
|
private_key_pem=std.file(input="private_key.pem").result,
|
244
|
-
subject=
|
245
|
-
common_name
|
246
|
-
organization
|
247
|
-
)
|
244
|
+
subject={
|
245
|
+
"common_name": "example.com",
|
246
|
+
"organization": "ACME Examples, Inc",
|
247
|
+
})
|
248
248
|
```
|
249
249
|
|
250
250
|
:param str resource_name: The name of the resource.
|
@@ -252,7 +252,7 @@ class CertRequest(pulumi.CustomResource):
|
|
252
252
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
253
253
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
254
254
|
:param pulumi.Input[str] private_key_pem: Private key in PEM (RFC 1421) interpolation function.
|
255
|
-
:param pulumi.Input[
|
255
|
+
:param pulumi.Input[Union['CertRequestSubjectArgs', 'CertRequestSubjectArgsDict']] subject: The subject for which a certificate is being requested. The acceptable arguments are all optional and their naming is based upon [Issuer Distinguished Names (RFC5280)](https://tools.ietf.org/html/rfc5280#section-4.1.2.4) section.
|
256
256
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: List of URIs for which a certificate is being requested (i.e. certificate subjects).
|
257
257
|
"""
|
258
258
|
...
|
@@ -271,10 +271,10 @@ class CertRequest(pulumi.CustomResource):
|
|
271
271
|
|
272
272
|
example = tls.CertRequest("example",
|
273
273
|
private_key_pem=std.file(input="private_key.pem").result,
|
274
|
-
subject=
|
275
|
-
common_name
|
276
|
-
organization
|
277
|
-
)
|
274
|
+
subject={
|
275
|
+
"common_name": "example.com",
|
276
|
+
"organization": "ACME Examples, Inc",
|
277
|
+
})
|
278
278
|
```
|
279
279
|
|
280
280
|
:param str resource_name: The name of the resource.
|
@@ -295,7 +295,7 @@ class CertRequest(pulumi.CustomResource):
|
|
295
295
|
dns_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
296
296
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
297
297
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
298
|
-
subject: Optional[pulumi.Input[
|
298
|
+
subject: Optional[pulumi.Input[Union['CertRequestSubjectArgs', 'CertRequestSubjectArgsDict']]] = None,
|
299
299
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
300
300
|
__props__=None):
|
301
301
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -332,7 +332,7 @@ class CertRequest(pulumi.CustomResource):
|
|
332
332
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
333
333
|
key_algorithm: Optional[pulumi.Input[str]] = None,
|
334
334
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
335
|
-
subject: Optional[pulumi.Input[
|
335
|
+
subject: Optional[pulumi.Input[Union['CertRequestSubjectArgs', 'CertRequestSubjectArgsDict']]] = None,
|
336
336
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'CertRequest':
|
337
337
|
"""
|
338
338
|
Get an existing CertRequest resource's state with the given name, id, and optional extra
|
@@ -346,7 +346,7 @@ class CertRequest(pulumi.CustomResource):
|
|
346
346
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
347
347
|
:param pulumi.Input[str] key_algorithm: Name of the algorithm used when generating the private key provided in `private_key_pem`.
|
348
348
|
:param pulumi.Input[str] private_key_pem: Private key in PEM (RFC 1421) interpolation function.
|
349
|
-
:param pulumi.Input[
|
349
|
+
:param pulumi.Input[Union['CertRequestSubjectArgs', 'CertRequestSubjectArgsDict']] subject: The subject for which a certificate is being requested. The acceptable arguments are all optional and their naming is based upon [Issuer Distinguished Names (RFC5280)](https://tools.ietf.org/html/rfc5280#section-4.1.2.4) section.
|
350
350
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: List of URIs for which a certificate is being requested (i.e. certificate subjects).
|
351
351
|
"""
|
352
352
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
pulumi_tls/provider.py
CHANGED
@@ -41,7 +41,7 @@ class Provider(pulumi.ProviderResource):
|
|
41
41
|
def __init__(__self__,
|
42
42
|
resource_name: str,
|
43
43
|
opts: Optional[pulumi.ResourceOptions] = None,
|
44
|
-
proxy: Optional[pulumi.Input[
|
44
|
+
proxy: Optional[pulumi.Input[Union['ProviderProxyArgs', 'ProviderProxyArgsDict']]] = None,
|
45
45
|
__props__=None):
|
46
46
|
"""
|
47
47
|
The provider type for the tls package. By default, resources use package-wide configuration
|
@@ -51,7 +51,7 @@ class Provider(pulumi.ProviderResource):
|
|
51
51
|
|
52
52
|
:param str resource_name: The name of the resource.
|
53
53
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
54
|
-
:param pulumi.Input[
|
54
|
+
:param pulumi.Input[Union['ProviderProxyArgs', 'ProviderProxyArgsDict']] proxy: Proxy used by resources and data sources that connect to external endpoints.
|
55
55
|
"""
|
56
56
|
...
|
57
57
|
@overload
|
@@ -80,7 +80,7 @@ class Provider(pulumi.ProviderResource):
|
|
80
80
|
def _internal_init(__self__,
|
81
81
|
resource_name: str,
|
82
82
|
opts: Optional[pulumi.ResourceOptions] = None,
|
83
|
-
proxy: Optional[pulumi.Input[
|
83
|
+
proxy: Optional[pulumi.Input[Union['ProviderProxyArgs', 'ProviderProxyArgsDict']]] = None,
|
84
84
|
__props__=None):
|
85
85
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
86
86
|
if not isinstance(opts, pulumi.ResourceOptions):
|
pulumi_tls/pulumi-plugin.json
CHANGED
pulumi_tls/self_signed_cert.py
CHANGED
@@ -463,7 +463,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
463
463
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
464
464
|
set_authority_key_id: Optional[pulumi.Input[bool]] = None,
|
465
465
|
set_subject_key_id: Optional[pulumi.Input[bool]] = None,
|
466
|
-
subject: Optional[pulumi.Input[
|
466
|
+
subject: Optional[pulumi.Input[Union['SelfSignedCertSubjectArgs', 'SelfSignedCertSubjectArgsDict']]] = None,
|
467
467
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
468
468
|
validity_period_hours: Optional[pulumi.Input[int]] = None,
|
469
469
|
__props__=None):
|
@@ -478,7 +478,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
478
478
|
:param pulumi.Input[str] private_key_pem: Private key in PEM (RFC 1421) interpolation function.
|
479
479
|
: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`).
|
480
480
|
: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`).
|
481
|
-
:param pulumi.Input[
|
481
|
+
:param pulumi.Input[Union['SelfSignedCertSubjectArgs', 'SelfSignedCertSubjectArgsDict']] subject: The subject for which a certificate is being requested. The acceptable arguments are all optional and their naming is based upon [Issuer Distinguished Names (RFC5280)](https://tools.ietf.org/html/rfc5280#section-4.1.2.4) section.
|
482
482
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: List of URIs for which a certificate is being requested (i.e. certificate subjects).
|
483
483
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
484
484
|
"""
|
@@ -513,7 +513,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
513
513
|
private_key_pem: Optional[pulumi.Input[str]] = None,
|
514
514
|
set_authority_key_id: Optional[pulumi.Input[bool]] = None,
|
515
515
|
set_subject_key_id: Optional[pulumi.Input[bool]] = None,
|
516
|
-
subject: Optional[pulumi.Input[
|
516
|
+
subject: Optional[pulumi.Input[Union['SelfSignedCertSubjectArgs', 'SelfSignedCertSubjectArgsDict']]] = None,
|
517
517
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
518
518
|
validity_period_hours: Optional[pulumi.Input[int]] = None,
|
519
519
|
__props__=None):
|
@@ -570,7 +570,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
570
570
|
ready_for_renewal: Optional[pulumi.Input[bool]] = None,
|
571
571
|
set_authority_key_id: Optional[pulumi.Input[bool]] = None,
|
572
572
|
set_subject_key_id: Optional[pulumi.Input[bool]] = None,
|
573
|
-
subject: Optional[pulumi.Input[
|
573
|
+
subject: Optional[pulumi.Input[Union['SelfSignedCertSubjectArgs', 'SelfSignedCertSubjectArgsDict']]] = None,
|
574
574
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
575
575
|
validity_end_time: Optional[pulumi.Input[str]] = None,
|
576
576
|
validity_period_hours: Optional[pulumi.Input[int]] = None,
|
@@ -592,7 +592,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
592
592
|
: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`)?
|
593
593
|
: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`).
|
594
594
|
: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`).
|
595
|
-
:param pulumi.Input[
|
595
|
+
:param pulumi.Input[Union['SelfSignedCertSubjectArgs', 'SelfSignedCertSubjectArgsDict']] subject: The subject for which a certificate is being requested. The acceptable arguments are all optional and their naming is based upon [Issuer Distinguished Names (RFC5280)](https://tools.ietf.org/html/rfc5280#section-4.1.2.4) section.
|
596
596
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: List of URIs for which a certificate is being requested (i.e. certificate subjects).
|
597
597
|
:param pulumi.Input[str] validity_end_time: The time until which the certificate is invalid, expressed as an [RFC3339](https://tools.ietf.org/html/rfc3339) timestamp.
|
598
598
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
@@ -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
3
|
pulumi_tls/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
|
-
pulumi_tls/cert_request.py,sha256=
|
4
|
+
pulumi_tls/cert_request.py,sha256=DrGGgtevGdQ7_leu0qPolG6inZy7NJDi4szod3StXlI,20490
|
5
5
|
pulumi_tls/get_certificate.py,sha256=lUy1OLl5oA8GbQnOeVy6F7Sfd8pWSgCnZ1g9gV9Jr30,5540
|
6
6
|
pulumi_tls/get_public_key.py,sha256=9rlku7HjE567b7gQaYv1e7NsuLmkyohuAK62yDBCq2g,10349
|
7
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
|
-
pulumi_tls/provider.py,sha256=
|
11
|
-
pulumi_tls/pulumi-plugin.json,sha256=
|
10
|
+
pulumi_tls/provider.py,sha256=SL708ouDW7KsIDLhTE123QNkg9CWMENzCx9j4rrncHI,4613
|
11
|
+
pulumi_tls/pulumi-plugin.json,sha256=3JTF6cyHG7P1Aculo4flo0meGpBpyNrO0hJvpetHc8Q,79
|
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=zq_4q9HWnCfpSKB_HV4_dc7WMPOXsA9TuvN6yhL2Pzs,46089
|
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.1.
|
19
|
-
pulumi_tls-5.1.
|
20
|
-
pulumi_tls-5.1.
|
21
|
-
pulumi_tls-5.1.
|
18
|
+
pulumi_tls-5.1.0a1723820217.dist-info/METADATA,sha256=jVk1MagRvEjIUFbgIHcyyz5lD0MCrX96PeYXQbnaziQ,2427
|
19
|
+
pulumi_tls-5.1.0a1723820217.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
20
|
+
pulumi_tls-5.1.0a1723820217.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
|
21
|
+
pulumi_tls-5.1.0a1723820217.dist-info/RECORD,,
|
{pulumi_tls-5.1.0a1723037966.dist-info → pulumi_tls-5.1.0a1723820217.dist-info}/top_level.txt
RENAMED
File without changes
|