pulumi-venafi 1.11.4__py3-none-any.whl → 1.12.0__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 +47 -0
- pulumi_venafi/config/__init__.pyi +9 -10
- pulumi_venafi/config/vars.py +9 -10
- pulumi_venafi/provider.py +35 -38
- pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.11.4.dist-info → pulumi_venafi-1.12.0.dist-info}/METADATA +1 -1
- {pulumi_venafi-1.11.4.dist-info → pulumi_venafi-1.12.0.dist-info}/RECORD +9 -9
- {pulumi_venafi-1.11.4.dist-info → pulumi_venafi-1.12.0.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.11.4.dist-info → pulumi_venafi-1.12.0.dist-info}/top_level.txt +0 -0
pulumi_venafi/certificate.py
CHANGED
|
@@ -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]
|
|
@@ -42,14 +41,12 @@ JWT of the identity provider associated to the Venafi Control Plane service acco
|
|
|
42
41
|
|
|
43
42
|
p12CertData: Optional[str]
|
|
44
43
|
"""
|
|
45
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
46
|
-
TLSPDC
|
|
44
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
47
45
|
"""
|
|
48
46
|
|
|
49
47
|
p12CertFilename: Optional[str]
|
|
50
48
|
"""
|
|
51
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
52
|
-
TLSPDC
|
|
49
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
53
50
|
"""
|
|
54
51
|
|
|
55
52
|
p12CertPassword: Optional[str]
|
|
@@ -76,8 +73,9 @@ WebSDK user for Venafi TLSPDC. Example: admin
|
|
|
76
73
|
|
|
77
74
|
trustBundle: Optional[str]
|
|
78
75
|
"""
|
|
79
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
80
|
-
|
|
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")}"
|
|
81
79
|
"""
|
|
82
80
|
|
|
83
81
|
url: Optional[str]
|
|
@@ -87,7 +85,8 @@ The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
|
87
85
|
|
|
88
86
|
zone: Optional[str]
|
|
89
87
|
"""
|
|
90
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
91
|
-
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
|
|
92
91
|
"""
|
|
93
92
|
|
pulumi_venafi/config/vars.py
CHANGED
|
@@ -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
|
|
|
@@ -59,16 +58,14 @@ class _ExportableConfig(types.ModuleType):
|
|
|
59
58
|
@_builtins.property
|
|
60
59
|
def p12_cert_data(self) -> Optional[str]:
|
|
61
60
|
"""
|
|
62
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
63
|
-
TLSPDC
|
|
61
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
64
62
|
"""
|
|
65
63
|
return __config__.get('p12CertData')
|
|
66
64
|
|
|
67
65
|
@_builtins.property
|
|
68
66
|
def p12_cert_filename(self) -> Optional[str]:
|
|
69
67
|
"""
|
|
70
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
71
|
-
TLSPDC
|
|
68
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
72
69
|
"""
|
|
73
70
|
return __config__.get('p12CertFilename')
|
|
74
71
|
|
|
@@ -107,8 +104,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
107
104
|
@_builtins.property
|
|
108
105
|
def trust_bundle(self) -> Optional[str]:
|
|
109
106
|
"""
|
|
110
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
111
|
-
|
|
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")}"
|
|
112
110
|
"""
|
|
113
111
|
return __config__.get('trustBundle')
|
|
114
112
|
|
|
@@ -122,8 +120,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
122
120
|
@_builtins.property
|
|
123
121
|
def zone(self) -> Optional[str]:
|
|
124
122
|
"""
|
|
125
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
126
|
-
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
|
|
127
126
|
"""
|
|
128
127
|
return __config__.get('zone')
|
|
129
128
|
|
pulumi_venafi/provider.py
CHANGED
|
@@ -39,22 +39,21 @@ class ProviderArgs:
|
|
|
39
39
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
40
40
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
41
41
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
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
|
|
43
|
-
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
|
|
44
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
|
|
45
|
-
: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
|
|
46
|
-
|
|
47
|
-
: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
|
|
48
|
-
TLSPDC
|
|
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
|
|
49
46
|
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
50
47
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
51
48
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
52
49
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
53
|
-
: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
|
|
54
|
-
|
|
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")}"
|
|
55
53
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
56
|
-
: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.
|
|
57
|
-
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
|
|
58
57
|
"""
|
|
59
58
|
if access_token is not None:
|
|
60
59
|
pulumi.set(__self__, "access_token", access_token)
|
|
@@ -133,8 +132,7 @@ class ProviderArgs:
|
|
|
133
132
|
@pulumi.getter(name="devMode")
|
|
134
133
|
def dev_mode(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
135
134
|
"""
|
|
136
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
137
|
-
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
|
|
138
136
|
"""
|
|
139
137
|
return pulumi.get(self, "dev_mode")
|
|
140
138
|
|
|
@@ -158,8 +156,7 @@ class ProviderArgs:
|
|
|
158
156
|
@pulumi.getter(name="p12CertData")
|
|
159
157
|
def p12_cert_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
160
158
|
"""
|
|
161
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
162
|
-
TLSPDC
|
|
159
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
163
160
|
"""
|
|
164
161
|
return pulumi.get(self, "p12_cert_data")
|
|
165
162
|
|
|
@@ -171,8 +168,7 @@ class ProviderArgs:
|
|
|
171
168
|
@pulumi.getter(name="p12CertFilename")
|
|
172
169
|
def p12_cert_filename(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
173
170
|
"""
|
|
174
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
175
|
-
TLSPDC
|
|
171
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
176
172
|
"""
|
|
177
173
|
return pulumi.get(self, "p12_cert_filename")
|
|
178
174
|
|
|
@@ -243,8 +239,9 @@ class ProviderArgs:
|
|
|
243
239
|
@pulumi.getter(name="trustBundle")
|
|
244
240
|
def trust_bundle(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
245
241
|
"""
|
|
246
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
247
|
-
|
|
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")}"
|
|
248
245
|
"""
|
|
249
246
|
return pulumi.get(self, "trust_bundle")
|
|
250
247
|
|
|
@@ -268,8 +265,9 @@ class ProviderArgs:
|
|
|
268
265
|
@pulumi.getter
|
|
269
266
|
def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
270
267
|
"""
|
|
271
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
272
|
-
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
|
|
273
271
|
"""
|
|
274
272
|
return pulumi.get(self, "zone")
|
|
275
273
|
|
|
@@ -311,22 +309,21 @@ class Provider(pulumi.ProviderResource):
|
|
|
311
309
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
312
310
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
313
311
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
314
|
-
: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
|
|
315
|
-
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
|
|
316
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
|
|
317
|
-
: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
|
|
318
|
-
|
|
319
|
-
: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
|
|
320
|
-
TLSPDC
|
|
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
|
|
321
316
|
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
322
317
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
323
318
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
324
319
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
325
|
-
: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
|
|
326
|
-
|
|
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")}"
|
|
327
323
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
328
|
-
: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.
|
|
329
|
-
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
|
|
330
327
|
"""
|
|
331
328
|
...
|
|
332
329
|
@overload
|
|
@@ -438,8 +435,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
438
435
|
@pulumi.getter(name="p12CertData")
|
|
439
436
|
def p12_cert_data(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
440
437
|
"""
|
|
441
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
442
|
-
TLSPDC
|
|
438
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
443
439
|
"""
|
|
444
440
|
return pulumi.get(self, "p12_cert_data")
|
|
445
441
|
|
|
@@ -447,8 +443,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
447
443
|
@pulumi.getter(name="p12CertFilename")
|
|
448
444
|
def p12_cert_filename(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
449
445
|
"""
|
|
450
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
451
|
-
TLSPDC
|
|
446
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
452
447
|
"""
|
|
453
448
|
return pulumi.get(self, "p12_cert_filename")
|
|
454
449
|
|
|
@@ -490,8 +485,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
490
485
|
@pulumi.getter(name="trustBundle")
|
|
491
486
|
def trust_bundle(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
492
487
|
"""
|
|
493
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
494
|
-
|
|
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")}"
|
|
495
491
|
"""
|
|
496
492
|
return pulumi.get(self, "trust_bundle")
|
|
497
493
|
|
|
@@ -507,8 +503,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
507
503
|
@pulumi.getter
|
|
508
504
|
def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
509
505
|
"""
|
|
510
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
511
|
-
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
|
|
512
509
|
"""
|
|
513
510
|
return pulumi.get(self, "zone")
|
|
514
511
|
|
pulumi_venafi/pulumi-plugin.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
pulumi_venafi/__init__.py,sha256=vOW1L2pSNqo7cas9gHPiMyM1eCOKwyhVJq_9eLHV468,1740
|
|
2
2
|
pulumi_venafi/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
-
pulumi_venafi/certificate.py,sha256=
|
|
3
|
+
pulumi_venafi/certificate.py,sha256=xd7mrG9j9RM7JJybecGANmbjA9bnW1vfhQsDuzbsnvg,68720
|
|
4
4
|
pulumi_venafi/cloud_keystore_installation.py,sha256=V3B2V9PrDYpRi27Kvm0wDqFa2D_ulRcf6Ha0RoKTiGo,24476
|
|
5
5
|
pulumi_venafi/get_cloud_keystore.py,sha256=svYPOyqizrLEUSApjrkQv5_a8Z_LPcO6RZ5HAMxKOLo,7050
|
|
6
6
|
pulumi_venafi/get_cloud_provider.py,sha256=7jVHrBl28kEIMHW3xgKgDIC-7xm7YiI_HmeL3TfXgyw,6181
|
|
7
7
|
pulumi_venafi/policy.py,sha256=pQo2E6SmnrY60cGMVI8hMYYDZoeZupCQVu0gNRK6duQ,12272
|
|
8
|
-
pulumi_venafi/provider.py,sha256=
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=
|
|
8
|
+
pulumi_venafi/provider.py,sha256=0XhgStEYCWOoQQrEMf_QYXvZQIqWtWHarzHi0DVfC-k,27002
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=DeE_2_5uaHRhoULFhyviQVX30qwc5-FUfKN--u9LZA8,66
|
|
10
10
|
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
pulumi_venafi/ssh_certificate.py,sha256=aumPqIZbWWHF_7BG3t3OdmrOBW04vDDg0fuVwloed50,57662
|
|
12
12
|
pulumi_venafi/ssh_config.py,sha256=UsZqU43kknxiqU4z_EpvAsFWykO9k1mTaQFXCsDtP88,9084
|
|
13
13
|
pulumi_venafi/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
14
|
-
pulumi_venafi/config/__init__.pyi,sha256=
|
|
15
|
-
pulumi_venafi/config/vars.py,sha256=
|
|
16
|
-
pulumi_venafi-1.
|
|
17
|
-
pulumi_venafi-1.
|
|
18
|
-
pulumi_venafi-1.
|
|
19
|
-
pulumi_venafi-1.
|
|
14
|
+
pulumi_venafi/config/__init__.pyi,sha256=jjqvk6HEkPy8UkpuRS5tBLF8iViAt_e72BxI5DkG0Oc,2479
|
|
15
|
+
pulumi_venafi/config/vars.py,sha256=cF6fz2siiJ3Sy075nHB0MlluRym28088s2baHsCnqyo,4240
|
|
16
|
+
pulumi_venafi-1.12.0.dist-info/METADATA,sha256=YYjGhHsOqFRlXc7-U2U9yjMrvpyM4oh9Qeh8gjcAkNI,3666
|
|
17
|
+
pulumi_venafi-1.12.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
pulumi_venafi-1.12.0.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|