pulumi-tls 5.2.0a1743575896__tar.gz → 5.2.0a1744070303__tar.gz
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-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/PKG-INFO +1 -1
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/pulumi-plugin.json +1 -1
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/self_signed_cert.py +7 -7
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/PKG-INFO +1 -1
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pyproject.toml +1 -1
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/README.md +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/__init__.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/_inputs.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/_utilities.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/cert_request.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/config/__init__.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/config/__init__.pyi +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/config/outputs.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/config/vars.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/get_certificate.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/get_public_key.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/locally_signed_cert.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/outputs.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/private_key.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/provider.py +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/py.typed +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/SOURCES.txt +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/dependency_links.txt +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/requires.txt +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/top_level.txt +0 -0
- {pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/setup.cfg +0 -0
@@ -35,7 +35,7 @@ class SelfSignedCertArgs:
|
|
35
35
|
"""
|
36
36
|
The set of arguments for constructing a SelfSignedCert resource.
|
37
37
|
: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`.
|
38
|
-
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
38
|
+
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
39
39
|
:param pulumi.Input[int] validity_period_hours: Number of hours, after initial issuing, that the certificate will remain valid for.
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
41
41
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
@@ -81,7 +81,7 @@ class SelfSignedCertArgs:
|
|
81
81
|
@pulumi.getter(name="privateKeyPem")
|
82
82
|
def private_key_pem(self) -> pulumi.Input[str]:
|
83
83
|
"""
|
84
|
-
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
84
|
+
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
85
85
|
"""
|
86
86
|
return pulumi.get(self, "private_key_pem")
|
87
87
|
|
@@ -222,7 +222,7 @@ class _SelfSignedCertState:
|
|
222
222
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
223
223
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
224
224
|
:param pulumi.Input[str] key_algorithm: Name of the algorithm used when generating the private key provided in `private_key_pem`.
|
225
|
-
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
225
|
+
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
226
226
|
: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`)?
|
227
227
|
: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`).
|
228
228
|
: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`).
|
@@ -350,7 +350,7 @@ class _SelfSignedCertState:
|
|
350
350
|
@pulumi.getter(name="privateKeyPem")
|
351
351
|
def private_key_pem(self) -> Optional[pulumi.Input[str]]:
|
352
352
|
"""
|
353
|
-
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
353
|
+
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
354
354
|
"""
|
355
355
|
return pulumi.get(self, "private_key_pem")
|
356
356
|
|
@@ -480,7 +480,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
480
480
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_names: List of DNS names for which a certificate is being requested (i.e. certificate subjects).
|
481
481
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
482
482
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
483
|
-
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
483
|
+
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
484
484
|
: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`).
|
485
485
|
: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`).
|
486
486
|
: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.
|
@@ -593,7 +593,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
593
593
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_addresses: List of IP addresses for which a certificate is being requested (i.e. certificate subjects).
|
594
594
|
:param pulumi.Input[bool] is_ca_certificate: Is the generated certificate representing a Certificate Authority (CA) (default: `false`).
|
595
595
|
:param pulumi.Input[str] key_algorithm: Name of the algorithm used when generating the private key provided in `private_key_pem`.
|
596
|
-
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
596
|
+
:param pulumi.Input[str] private_key_pem: Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
597
597
|
: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`)?
|
598
598
|
: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`).
|
599
599
|
: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`).
|
@@ -682,7 +682,7 @@ class SelfSignedCert(pulumi.CustomResource):
|
|
682
682
|
@pulumi.getter(name="privateKeyPem")
|
683
683
|
def private_key_pem(self) -> pulumi.Output[str]:
|
684
684
|
"""
|
685
|
-
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
685
|
+
Private key in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format, that the certificate will belong to.
|
686
686
|
"""
|
687
687
|
return pulumi.get(self, "private_key_pem")
|
688
688
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls/locally_signed_cert.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/dependency_links.txt
RENAMED
File without changes
|
{pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/requires.txt
RENAMED
File without changes
|
{pulumi_tls-5.2.0a1743575896 → pulumi_tls-5.2.0a1744070303}/pulumi_tls.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|