pulumi-venafi 1.12.0a1753398192__tar.gz → 1.13.0a1761981548__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.
Potentially problematic release.
This version of pulumi-venafi might be problematic. Click here for more details.
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/PKG-INFO +1 -1
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/certificate.py +47 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/config/__init__.pyi +14 -9
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/config/vars.py +16 -9
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/provider.py +63 -34
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi.egg-info/PKG-INFO +1 -1
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pyproject.toml +1 -1
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/README.md +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/__init__.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/_utilities.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/cloud_keystore_installation.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/config/__init__.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/get_cloud_keystore.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/get_cloud_provider.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/policy.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/py.typed +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/ssh_certificate.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/ssh_config.py +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi.egg-info/SOURCES.txt +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi.egg-info/dependency_links.txt +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi.egg-info/requires.txt +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi.egg-info/top_level.txt +0 -0
- {pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/setup.cfg +0 -0
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/certificate.py
RENAMED
|
@@ -43,6 +43,7 @@ class CertificateArgs:
|
|
|
43
43
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
44
44
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
45
45
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
46
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
46
47
|
valid_days: Optional[pulumi.Input[_builtins.int]] = None):
|
|
47
48
|
"""
|
|
48
49
|
The set of arguments for constructing a Certificate resource.
|
|
@@ -75,6 +76,7 @@ class CertificateArgs:
|
|
|
75
76
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
76
77
|
the certificate.
|
|
77
78
|
:param pulumi.Input[_builtins.str] state: State of the certificate (S)
|
|
79
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: List of Certificate Tags defined in Venafi Control Plane.
|
|
78
80
|
:param pulumi.Input[_builtins.int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
79
81
|
"""
|
|
80
82
|
pulumi.set(__self__, "common_name", common_name)
|
|
@@ -124,6 +126,8 @@ class CertificateArgs:
|
|
|
124
126
|
pulumi.set(__self__, "san_uris", san_uris)
|
|
125
127
|
if state is not None:
|
|
126
128
|
pulumi.set(__self__, "state", state)
|
|
129
|
+
if tags is not None:
|
|
130
|
+
pulumi.set(__self__, "tags", tags)
|
|
127
131
|
if valid_days is not None:
|
|
128
132
|
pulumi.set(__self__, "valid_days", valid_days)
|
|
129
133
|
|
|
@@ -416,6 +420,18 @@ class CertificateArgs:
|
|
|
416
420
|
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
417
421
|
pulumi.set(self, "state", value)
|
|
418
422
|
|
|
423
|
+
@_builtins.property
|
|
424
|
+
@pulumi.getter
|
|
425
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
426
|
+
"""
|
|
427
|
+
List of Certificate Tags defined in Venafi Control Plane.
|
|
428
|
+
"""
|
|
429
|
+
return pulumi.get(self, "tags")
|
|
430
|
+
|
|
431
|
+
@tags.setter
|
|
432
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
433
|
+
pulumi.set(self, "tags", value)
|
|
434
|
+
|
|
419
435
|
@_builtins.property
|
|
420
436
|
@pulumi.getter(name="validDays")
|
|
421
437
|
def valid_days(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
@@ -459,6 +475,7 @@ class _CertificateState:
|
|
|
459
475
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
460
476
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
461
477
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
478
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
462
479
|
valid_days: Optional[pulumi.Input[_builtins.int]] = None):
|
|
463
480
|
"""
|
|
464
481
|
Input properties used for looking up and filtering Certificate resources.
|
|
@@ -494,6 +511,7 @@ class _CertificateState:
|
|
|
494
511
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
495
512
|
the certificate.
|
|
496
513
|
:param pulumi.Input[_builtins.str] state: State of the certificate (S)
|
|
514
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: List of Certificate Tags defined in Venafi Control Plane.
|
|
497
515
|
:param pulumi.Input[_builtins.int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
498
516
|
"""
|
|
499
517
|
if algorithm is not None:
|
|
@@ -550,6 +568,8 @@ class _CertificateState:
|
|
|
550
568
|
pulumi.set(__self__, "san_uris", san_uris)
|
|
551
569
|
if state is not None:
|
|
552
570
|
pulumi.set(__self__, "state", state)
|
|
571
|
+
if tags is not None:
|
|
572
|
+
pulumi.set(__self__, "tags", tags)
|
|
553
573
|
if valid_days is not None:
|
|
554
574
|
pulumi.set(__self__, "valid_days", valid_days)
|
|
555
575
|
|
|
@@ -878,6 +898,18 @@ class _CertificateState:
|
|
|
878
898
|
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
879
899
|
pulumi.set(self, "state", value)
|
|
880
900
|
|
|
901
|
+
@_builtins.property
|
|
902
|
+
@pulumi.getter
|
|
903
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
904
|
+
"""
|
|
905
|
+
List of Certificate Tags defined in Venafi Control Plane.
|
|
906
|
+
"""
|
|
907
|
+
return pulumi.get(self, "tags")
|
|
908
|
+
|
|
909
|
+
@tags.setter
|
|
910
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
911
|
+
pulumi.set(self, "tags", value)
|
|
912
|
+
|
|
881
913
|
@_builtins.property
|
|
882
914
|
@pulumi.getter(name="validDays")
|
|
883
915
|
def valid_days(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
@@ -921,6 +953,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
921
953
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
922
954
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
923
955
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
956
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
924
957
|
valid_days: Optional[pulumi.Input[_builtins.int]] = None,
|
|
925
958
|
__props__=None):
|
|
926
959
|
"""
|
|
@@ -956,6 +989,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
956
989
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
957
990
|
the certificate.
|
|
958
991
|
:param pulumi.Input[_builtins.str] state: State of the certificate (S)
|
|
992
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: List of Certificate Tags defined in Venafi Control Plane.
|
|
959
993
|
:param pulumi.Input[_builtins.int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
960
994
|
"""
|
|
961
995
|
...
|
|
@@ -1005,6 +1039,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
1005
1039
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1006
1040
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1007
1041
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1042
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1008
1043
|
valid_days: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1009
1044
|
__props__=None):
|
|
1010
1045
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -1041,6 +1076,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
1041
1076
|
__props__.__dict__["san_ips"] = san_ips
|
|
1042
1077
|
__props__.__dict__["san_uris"] = san_uris
|
|
1043
1078
|
__props__.__dict__["state"] = state
|
|
1079
|
+
__props__.__dict__["tags"] = tags
|
|
1044
1080
|
__props__.__dict__["valid_days"] = valid_days
|
|
1045
1081
|
__props__.__dict__["certificate"] = None
|
|
1046
1082
|
__props__.__dict__["certificate_id"] = None
|
|
@@ -1084,6 +1120,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
1084
1120
|
san_ips: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1085
1121
|
san_uris: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1086
1122
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1123
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1087
1124
|
valid_days: Optional[pulumi.Input[_builtins.int]] = None) -> 'Certificate':
|
|
1088
1125
|
"""
|
|
1089
1126
|
Get an existing Certificate resource's state with the given name, id, and optional extra
|
|
@@ -1124,6 +1161,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
1124
1161
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] san_uris: List of Uniform Resource Identifiers (URIs) to use as alternative subjects of
|
|
1125
1162
|
the certificate.
|
|
1126
1163
|
:param pulumi.Input[_builtins.str] state: State of the certificate (S)
|
|
1164
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] tags: List of Certificate Tags defined in Venafi Control Plane.
|
|
1127
1165
|
:param pulumi.Input[_builtins.int] valid_days: Desired number of days for which the new certificate will be valid.
|
|
1128
1166
|
"""
|
|
1129
1167
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -1157,6 +1195,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
1157
1195
|
__props__.__dict__["san_ips"] = san_ips
|
|
1158
1196
|
__props__.__dict__["san_uris"] = san_uris
|
|
1159
1197
|
__props__.__dict__["state"] = state
|
|
1198
|
+
__props__.__dict__["tags"] = tags
|
|
1160
1199
|
__props__.__dict__["valid_days"] = valid_days
|
|
1161
1200
|
return Certificate(resource_name, opts=opts, __props__=__props__)
|
|
1162
1201
|
|
|
@@ -1377,6 +1416,14 @@ class Certificate(pulumi.CustomResource):
|
|
|
1377
1416
|
"""
|
|
1378
1417
|
return pulumi.get(self, "state")
|
|
1379
1418
|
|
|
1419
|
+
@_builtins.property
|
|
1420
|
+
@pulumi.getter
|
|
1421
|
+
def tags(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1422
|
+
"""
|
|
1423
|
+
List of Certificate Tags defined in Venafi Control Plane.
|
|
1424
|
+
"""
|
|
1425
|
+
return pulumi.get(self, "tags")
|
|
1426
|
+
|
|
1380
1427
|
@_builtins.property
|
|
1381
1428
|
@pulumi.getter(name="validDays")
|
|
1382
1429
|
def valid_days(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
@@ -31,8 +31,7 @@ application that will be using the token
|
|
|
31
31
|
|
|
32
32
|
devMode: Optional[bool]
|
|
33
33
|
"""
|
|
34
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
35
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
34
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
36
35
|
"""
|
|
37
36
|
|
|
38
37
|
externalJwt: Optional[str]
|
|
@@ -40,15 +39,19 @@ externalJwt: Optional[str]
|
|
|
40
39
|
JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
41
40
|
"""
|
|
42
41
|
|
|
42
|
+
p12CertData: Optional[str]
|
|
43
|
+
"""
|
|
44
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
45
|
+
"""
|
|
46
|
+
|
|
43
47
|
p12CertFilename: Optional[str]
|
|
44
48
|
"""
|
|
45
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
46
|
-
TLSPDC
|
|
49
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
47
50
|
"""
|
|
48
51
|
|
|
49
52
|
p12CertPassword: Optional[str]
|
|
50
53
|
"""
|
|
51
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
54
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
52
55
|
"""
|
|
53
56
|
|
|
54
57
|
skipRetirement: Optional[bool]
|
|
@@ -70,8 +73,9 @@ WebSDK user for Venafi TLSPDC. Example: admin
|
|
|
70
73
|
|
|
71
74
|
trustBundle: Optional[str]
|
|
72
75
|
"""
|
|
73
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
74
|
-
|
|
76
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
77
|
+
Example:
|
|
78
|
+
trust_bundle = "${file("chain.pem")}"
|
|
75
79
|
"""
|
|
76
80
|
|
|
77
81
|
url: Optional[str]
|
|
@@ -81,7 +85,8 @@ The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
|
81
85
|
|
|
82
86
|
zone: Optional[str]
|
|
83
87
|
"""
|
|
84
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
85
|
-
Example for Platform: testPolicy\\\\vault
|
|
88
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
89
|
+
Example for Platform: testPolicy\\\\vault
|
|
90
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
86
91
|
"""
|
|
87
92
|
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/config/vars.py
RENAMED
|
@@ -44,8 +44,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
44
44
|
@_builtins.property
|
|
45
45
|
def dev_mode(self) -> Optional[bool]:
|
|
46
46
|
"""
|
|
47
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
48
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
47
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
49
48
|
"""
|
|
50
49
|
return __config__.get_bool('devMode')
|
|
51
50
|
|
|
@@ -56,18 +55,24 @@ class _ExportableConfig(types.ModuleType):
|
|
|
56
55
|
"""
|
|
57
56
|
return __config__.get('externalJwt')
|
|
58
57
|
|
|
58
|
+
@_builtins.property
|
|
59
|
+
def p12_cert_data(self) -> Optional[str]:
|
|
60
|
+
"""
|
|
61
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
62
|
+
"""
|
|
63
|
+
return __config__.get('p12CertData')
|
|
64
|
+
|
|
59
65
|
@_builtins.property
|
|
60
66
|
def p12_cert_filename(self) -> Optional[str]:
|
|
61
67
|
"""
|
|
62
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
63
|
-
TLSPDC
|
|
68
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
64
69
|
"""
|
|
65
70
|
return __config__.get('p12CertFilename')
|
|
66
71
|
|
|
67
72
|
@_builtins.property
|
|
68
73
|
def p12_cert_password(self) -> Optional[str]:
|
|
69
74
|
"""
|
|
70
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
75
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
71
76
|
"""
|
|
72
77
|
return __config__.get('p12CertPassword')
|
|
73
78
|
|
|
@@ -99,8 +104,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
99
104
|
@_builtins.property
|
|
100
105
|
def trust_bundle(self) -> Optional[str]:
|
|
101
106
|
"""
|
|
102
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
103
|
-
|
|
107
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
108
|
+
Example:
|
|
109
|
+
trust_bundle = "${file("chain.pem")}"
|
|
104
110
|
"""
|
|
105
111
|
return __config__.get('trustBundle')
|
|
106
112
|
|
|
@@ -114,8 +120,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
114
120
|
@_builtins.property
|
|
115
121
|
def zone(self) -> Optional[str]:
|
|
116
122
|
"""
|
|
117
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
118
|
-
Example for Platform: testPolicy\\\\vault
|
|
123
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
124
|
+
Example for Platform: testPolicy\\\\vault
|
|
125
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
119
126
|
"""
|
|
120
127
|
return __config__.get('zone')
|
|
121
128
|
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/provider.py
RENAMED
|
@@ -24,6 +24,7 @@ class ProviderArgs:
|
|
|
24
24
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
25
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
26
26
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
29
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -38,20 +39,21 @@ class ProviderArgs:
|
|
|
38
39
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
39
40
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
40
41
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
41
|
-
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
42
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
42
|
+
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
43
43
|
:param pulumi.Input[_builtins.str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
44
|
-
:param pulumi.Input[_builtins.str]
|
|
45
|
-
|
|
46
|
-
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert
|
|
44
|
+
:param pulumi.Input[_builtins.str] p12_cert_data: Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
45
|
+
:param pulumi.Input[_builtins.str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
46
|
+
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
47
47
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
48
48
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
49
49
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
50
|
-
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
51
|
-
|
|
50
|
+
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
51
|
+
Example:
|
|
52
|
+
trust_bundle = "${file("chain.pem")}"
|
|
52
53
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
53
|
-
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
54
|
-
Example for Platform: testPolicy\\\\vault
|
|
54
|
+
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
55
|
+
Example for Platform: testPolicy\\\\vault
|
|
56
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
55
57
|
"""
|
|
56
58
|
if access_token is not None:
|
|
57
59
|
pulumi.set(__self__, "access_token", access_token)
|
|
@@ -63,6 +65,8 @@ class ProviderArgs:
|
|
|
63
65
|
pulumi.set(__self__, "dev_mode", dev_mode)
|
|
64
66
|
if external_jwt is not None:
|
|
65
67
|
pulumi.set(__self__, "external_jwt", external_jwt)
|
|
68
|
+
if p12_cert_data is not None:
|
|
69
|
+
pulumi.set(__self__, "p12_cert_data", p12_cert_data)
|
|
66
70
|
if p12_cert_filename is not None:
|
|
67
71
|
pulumi.set(__self__, "p12_cert_filename", p12_cert_filename)
|
|
68
72
|
if p12_cert_password is not None:
|
|
@@ -128,8 +132,7 @@ class ProviderArgs:
|
|
|
128
132
|
@pulumi.getter(name="devMode")
|
|
129
133
|
def dev_mode(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
130
134
|
"""
|
|
131
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
132
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
135
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
133
136
|
"""
|
|
134
137
|
return pulumi.get(self, "dev_mode")
|
|
135
138
|
|
|
@@ -149,12 +152,23 @@ class ProviderArgs:
|
|
|
149
152
|
def external_jwt(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
150
153
|
pulumi.set(self, "external_jwt", value)
|
|
151
154
|
|
|
155
|
+
@_builtins.property
|
|
156
|
+
@pulumi.getter(name="p12CertData")
|
|
157
|
+
def p12_cert_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
158
|
+
"""
|
|
159
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "p12_cert_data")
|
|
162
|
+
|
|
163
|
+
@p12_cert_data.setter
|
|
164
|
+
def p12_cert_data(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
165
|
+
pulumi.set(self, "p12_cert_data", value)
|
|
166
|
+
|
|
152
167
|
@_builtins.property
|
|
153
168
|
@pulumi.getter(name="p12CertFilename")
|
|
154
169
|
def p12_cert_filename(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
155
170
|
"""
|
|
156
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
157
|
-
TLSPDC
|
|
171
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
158
172
|
"""
|
|
159
173
|
return pulumi.get(self, "p12_cert_filename")
|
|
160
174
|
|
|
@@ -166,7 +180,7 @@ class ProviderArgs:
|
|
|
166
180
|
@pulumi.getter(name="p12CertPassword")
|
|
167
181
|
def p12_cert_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
168
182
|
"""
|
|
169
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
183
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
170
184
|
"""
|
|
171
185
|
return pulumi.get(self, "p12_cert_password")
|
|
172
186
|
|
|
@@ -225,8 +239,9 @@ class ProviderArgs:
|
|
|
225
239
|
@pulumi.getter(name="trustBundle")
|
|
226
240
|
def trust_bundle(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
227
241
|
"""
|
|
228
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
229
|
-
|
|
242
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
243
|
+
Example:
|
|
244
|
+
trust_bundle = "${file("chain.pem")}"
|
|
230
245
|
"""
|
|
231
246
|
return pulumi.get(self, "trust_bundle")
|
|
232
247
|
|
|
@@ -250,8 +265,9 @@ class ProviderArgs:
|
|
|
250
265
|
@pulumi.getter
|
|
251
266
|
def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
252
267
|
"""
|
|
253
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
254
|
-
Example for Platform: testPolicy\\\\vault
|
|
268
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
269
|
+
Example for Platform: testPolicy\\\\vault
|
|
270
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
255
271
|
"""
|
|
256
272
|
return pulumi.get(self, "zone")
|
|
257
273
|
|
|
@@ -271,6 +287,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
271
287
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
272
288
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
273
289
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
290
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
274
291
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
275
292
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
276
293
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -292,20 +309,21 @@ class Provider(pulumi.ProviderResource):
|
|
|
292
309
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
293
310
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
294
311
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
295
|
-
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
296
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
312
|
+
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
297
313
|
:param pulumi.Input[_builtins.str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
298
|
-
:param pulumi.Input[_builtins.str]
|
|
299
|
-
|
|
300
|
-
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert
|
|
314
|
+
:param pulumi.Input[_builtins.str] p12_cert_data: Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
315
|
+
:param pulumi.Input[_builtins.str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
316
|
+
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
301
317
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
302
318
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
303
319
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
304
|
-
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
305
|
-
|
|
320
|
+
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
321
|
+
Example:
|
|
322
|
+
trust_bundle = "${file("chain.pem")}"
|
|
306
323
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
307
|
-
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
308
|
-
Example for Platform: testPolicy\\\\vault
|
|
324
|
+
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
325
|
+
Example for Platform: testPolicy\\\\vault
|
|
326
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
309
327
|
"""
|
|
310
328
|
...
|
|
311
329
|
@overload
|
|
@@ -339,6 +357,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
339
357
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
340
358
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
341
359
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
360
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
342
361
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
343
362
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
344
363
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -362,6 +381,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
362
381
|
__props__.__dict__["client_id"] = client_id
|
|
363
382
|
__props__.__dict__["dev_mode"] = pulumi.Output.from_input(dev_mode).apply(pulumi.runtime.to_json) if dev_mode is not None else None
|
|
364
383
|
__props__.__dict__["external_jwt"] = None if external_jwt is None else pulumi.Output.secret(external_jwt)
|
|
384
|
+
__props__.__dict__["p12_cert_data"] = p12_cert_data
|
|
365
385
|
__props__.__dict__["p12_cert_filename"] = p12_cert_filename
|
|
366
386
|
__props__.__dict__["p12_cert_password"] = None if p12_cert_password is None else pulumi.Output.secret(p12_cert_password)
|
|
367
387
|
__props__.__dict__["skip_retirement"] = pulumi.Output.from_input(skip_retirement).apply(pulumi.runtime.to_json) if skip_retirement is not None else None
|
|
@@ -411,12 +431,19 @@ class Provider(pulumi.ProviderResource):
|
|
|
411
431
|
"""
|
|
412
432
|
return pulumi.get(self, "external_jwt")
|
|
413
433
|
|
|
434
|
+
@_builtins.property
|
|
435
|
+
@pulumi.getter(name="p12CertData")
|
|
436
|
+
def p12_cert_data(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
437
|
+
"""
|
|
438
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
439
|
+
"""
|
|
440
|
+
return pulumi.get(self, "p12_cert_data")
|
|
441
|
+
|
|
414
442
|
@_builtins.property
|
|
415
443
|
@pulumi.getter(name="p12CertFilename")
|
|
416
444
|
def p12_cert_filename(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
417
445
|
"""
|
|
418
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
419
|
-
TLSPDC
|
|
446
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
420
447
|
"""
|
|
421
448
|
return pulumi.get(self, "p12_cert_filename")
|
|
422
449
|
|
|
@@ -424,7 +451,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
424
451
|
@pulumi.getter(name="p12CertPassword")
|
|
425
452
|
def p12_cert_password(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
426
453
|
"""
|
|
427
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
454
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
428
455
|
"""
|
|
429
456
|
return pulumi.get(self, "p12_cert_password")
|
|
430
457
|
|
|
@@ -458,8 +485,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
458
485
|
@pulumi.getter(name="trustBundle")
|
|
459
486
|
def trust_bundle(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
460
487
|
"""
|
|
461
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
462
|
-
|
|
488
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
489
|
+
Example:
|
|
490
|
+
trust_bundle = "${file("chain.pem")}"
|
|
463
491
|
"""
|
|
464
492
|
return pulumi.get(self, "trust_bundle")
|
|
465
493
|
|
|
@@ -475,8 +503,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
475
503
|
@pulumi.getter
|
|
476
504
|
def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
477
505
|
"""
|
|
478
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
479
|
-
Example for Platform: testPolicy\\\\vault
|
|
506
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
507
|
+
Example for Platform: testPolicy\\\\vault
|
|
508
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
480
509
|
"""
|
|
481
510
|
return pulumi.get(self, "zone")
|
|
482
511
|
|
|
File without changes
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/__init__.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/_utilities.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/config/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/ssh_certificate.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.12.0a1753398192 → pulumi_venafi-1.13.0a1761981548}/pulumi_venafi/ssh_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|