pulumi-venafi 1.12.0a1753339650__py3-none-any.whl → 1.12.0a1753398192__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/__init__.py +1 -1
- pulumi_venafi/certificate.py +445 -446
- pulumi_venafi/cloud_keystore_installation.py +104 -105
- pulumi_venafi/config/__init__.py +1 -1
- pulumi_venafi/config/__init__.pyi +1 -2
- pulumi_venafi/config/vars.py +15 -16
- pulumi_venafi/get_cloud_keystore.py +19 -20
- pulumi_venafi/get_cloud_provider.py +17 -18
- pulumi_venafi/policy.py +35 -36
- pulumi_venafi/provider.py +136 -137
- pulumi_venafi/pulumi-plugin.json +1 -1
- pulumi_venafi/ssh_certificate.py +345 -346
- pulumi_venafi/ssh_config.py +36 -37
- {pulumi_venafi-1.12.0a1753339650.dist-info → pulumi_venafi-1.12.0a1753398192.dist-info}/METADATA +1 -1
- pulumi_venafi-1.12.0a1753398192.dist-info/RECORD +19 -0
- pulumi_venafi-1.12.0a1753339650.dist-info/RECORD +0 -19
- {pulumi_venafi-1.12.0a1753339650.dist-info → pulumi_venafi-1.12.0a1753398192.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.12.0a1753339650.dist-info → pulumi_venafi-1.12.0a1753398192.dist-info}/top_level.txt +0 -0
pulumi_venafi/ssh_config.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -20,37 +19,37 @@ __all__ = ['SshConfigArgs', 'SshConfig']
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class SshConfigArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
template: pulumi.Input[
|
|
22
|
+
template: pulumi.Input[_builtins.str]):
|
|
24
23
|
"""
|
|
25
24
|
The set of arguments for constructing a SshConfig resource.
|
|
26
|
-
:param pulumi.Input[
|
|
25
|
+
:param pulumi.Input[_builtins.str] template: The SSH certificate issuing template.
|
|
27
26
|
"""
|
|
28
27
|
pulumi.set(__self__, "template", template)
|
|
29
28
|
|
|
30
|
-
@property
|
|
29
|
+
@_builtins.property
|
|
31
30
|
@pulumi.getter
|
|
32
|
-
def template(self) -> pulumi.Input[
|
|
31
|
+
def template(self) -> pulumi.Input[_builtins.str]:
|
|
33
32
|
"""
|
|
34
33
|
The SSH certificate issuing template.
|
|
35
34
|
"""
|
|
36
35
|
return pulumi.get(self, "template")
|
|
37
36
|
|
|
38
37
|
@template.setter
|
|
39
|
-
def template(self, value: pulumi.Input[
|
|
38
|
+
def template(self, value: pulumi.Input[_builtins.str]):
|
|
40
39
|
pulumi.set(self, "template", value)
|
|
41
40
|
|
|
42
41
|
|
|
43
42
|
@pulumi.input_type
|
|
44
43
|
class _SshConfigState:
|
|
45
44
|
def __init__(__self__, *,
|
|
46
|
-
ca_public_key: Optional[pulumi.Input[
|
|
47
|
-
principals: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
48
|
-
template: Optional[pulumi.Input[
|
|
45
|
+
ca_public_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
46
|
+
principals: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
47
|
+
template: Optional[pulumi.Input[_builtins.str]] = None):
|
|
49
48
|
"""
|
|
50
49
|
Input properties used for looking up and filtering SshConfig resources.
|
|
51
|
-
:param pulumi.Input[
|
|
52
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
53
|
-
:param pulumi.Input[
|
|
50
|
+
:param pulumi.Input[_builtins.str] ca_public_key: (Optional, string) The template's CA public key.
|
|
51
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
52
|
+
:param pulumi.Input[_builtins.str] template: The SSH certificate issuing template.
|
|
54
53
|
"""
|
|
55
54
|
if ca_public_key is not None:
|
|
56
55
|
pulumi.set(__self__, "ca_public_key", ca_public_key)
|
|
@@ -59,40 +58,40 @@ class _SshConfigState:
|
|
|
59
58
|
if template is not None:
|
|
60
59
|
pulumi.set(__self__, "template", template)
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter(name="caPublicKey")
|
|
64
|
-
def ca_public_key(self) -> Optional[pulumi.Input[
|
|
63
|
+
def ca_public_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
65
64
|
"""
|
|
66
65
|
(Optional, string) The template's CA public key.
|
|
67
66
|
"""
|
|
68
67
|
return pulumi.get(self, "ca_public_key")
|
|
69
68
|
|
|
70
69
|
@ca_public_key.setter
|
|
71
|
-
def ca_public_key(self, value: Optional[pulumi.Input[
|
|
70
|
+
def ca_public_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
72
71
|
pulumi.set(self, "ca_public_key", value)
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter
|
|
76
|
-
def principals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
75
|
+
def principals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
77
76
|
"""
|
|
78
77
|
(Optional, set of strings) A list of user names exported from the template.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "principals")
|
|
81
80
|
|
|
82
81
|
@principals.setter
|
|
83
|
-
def principals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
82
|
+
def principals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
84
83
|
pulumi.set(self, "principals", value)
|
|
85
84
|
|
|
86
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
87
86
|
@pulumi.getter
|
|
88
|
-
def template(self) -> Optional[pulumi.Input[
|
|
87
|
+
def template(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
89
88
|
"""
|
|
90
89
|
The SSH certificate issuing template.
|
|
91
90
|
"""
|
|
92
91
|
return pulumi.get(self, "template")
|
|
93
92
|
|
|
94
93
|
@template.setter
|
|
95
|
-
def template(self, value: Optional[pulumi.Input[
|
|
94
|
+
def template(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
96
95
|
pulumi.set(self, "template", value)
|
|
97
96
|
|
|
98
97
|
|
|
@@ -102,7 +101,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
102
101
|
def __init__(__self__,
|
|
103
102
|
resource_name: str,
|
|
104
103
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
105
|
-
template: Optional[pulumi.Input[
|
|
104
|
+
template: Optional[pulumi.Input[_builtins.str]] = None,
|
|
106
105
|
__props__=None):
|
|
107
106
|
"""
|
|
108
107
|
Provides access to retrieve configuration from SSH certificate issuance template from *Venafi Trust Protection Platform*.
|
|
@@ -118,7 +117,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
118
117
|
|
|
119
118
|
:param str resource_name: The name of the resource.
|
|
120
119
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
121
|
-
:param pulumi.Input[
|
|
120
|
+
:param pulumi.Input[_builtins.str] template: The SSH certificate issuing template.
|
|
122
121
|
"""
|
|
123
122
|
...
|
|
124
123
|
@overload
|
|
@@ -153,7 +152,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
153
152
|
def _internal_init(__self__,
|
|
154
153
|
resource_name: str,
|
|
155
154
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
156
|
-
template: Optional[pulumi.Input[
|
|
155
|
+
template: Optional[pulumi.Input[_builtins.str]] = None,
|
|
157
156
|
__props__=None):
|
|
158
157
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
159
158
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -178,9 +177,9 @@ class SshConfig(pulumi.CustomResource):
|
|
|
178
177
|
def get(resource_name: str,
|
|
179
178
|
id: pulumi.Input[str],
|
|
180
179
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
181
|
-
ca_public_key: Optional[pulumi.Input[
|
|
182
|
-
principals: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
183
|
-
template: Optional[pulumi.Input[
|
|
180
|
+
ca_public_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
181
|
+
principals: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
182
|
+
template: Optional[pulumi.Input[_builtins.str]] = None) -> 'SshConfig':
|
|
184
183
|
"""
|
|
185
184
|
Get an existing SshConfig resource's state with the given name, id, and optional extra
|
|
186
185
|
properties used to qualify the lookup.
|
|
@@ -188,9 +187,9 @@ class SshConfig(pulumi.CustomResource):
|
|
|
188
187
|
:param str resource_name: The unique name of the resulting resource.
|
|
189
188
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
190
189
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
191
|
-
:param pulumi.Input[
|
|
192
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
193
|
-
:param pulumi.Input[
|
|
190
|
+
:param pulumi.Input[_builtins.str] ca_public_key: (Optional, string) The template's CA public key.
|
|
191
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
192
|
+
:param pulumi.Input[_builtins.str] template: The SSH certificate issuing template.
|
|
194
193
|
"""
|
|
195
194
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
196
195
|
|
|
@@ -201,25 +200,25 @@ class SshConfig(pulumi.CustomResource):
|
|
|
201
200
|
__props__.__dict__["template"] = template
|
|
202
201
|
return SshConfig(resource_name, opts=opts, __props__=__props__)
|
|
203
202
|
|
|
204
|
-
@property
|
|
203
|
+
@_builtins.property
|
|
205
204
|
@pulumi.getter(name="caPublicKey")
|
|
206
|
-
def ca_public_key(self) -> pulumi.Output[
|
|
205
|
+
def ca_public_key(self) -> pulumi.Output[_builtins.str]:
|
|
207
206
|
"""
|
|
208
207
|
(Optional, string) The template's CA public key.
|
|
209
208
|
"""
|
|
210
209
|
return pulumi.get(self, "ca_public_key")
|
|
211
210
|
|
|
212
|
-
@property
|
|
211
|
+
@_builtins.property
|
|
213
212
|
@pulumi.getter
|
|
214
|
-
def principals(self) -> pulumi.Output[Sequence[
|
|
213
|
+
def principals(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
215
214
|
"""
|
|
216
215
|
(Optional, set of strings) A list of user names exported from the template.
|
|
217
216
|
"""
|
|
218
217
|
return pulumi.get(self, "principals")
|
|
219
218
|
|
|
220
|
-
@property
|
|
219
|
+
@_builtins.property
|
|
221
220
|
@pulumi.getter
|
|
222
|
-
def template(self) -> pulumi.Output[
|
|
221
|
+
def template(self) -> pulumi.Output[_builtins.str]:
|
|
223
222
|
"""
|
|
224
223
|
The SSH certificate issuing template.
|
|
225
224
|
"""
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
pulumi_venafi/__init__.py,sha256=vOW1L2pSNqo7cas9gHPiMyM1eCOKwyhVJq_9eLHV468,1740
|
|
2
|
+
pulumi_venafi/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
+
pulumi_venafi/certificate.py,sha256=0YDekrWrhXgqLIwVfQWHk-HjIEaMeDWcnIE4VrBRgLU,66436
|
|
4
|
+
pulumi_venafi/cloud_keystore_installation.py,sha256=V3B2V9PrDYpRi27Kvm0wDqFa2D_ulRcf6Ha0RoKTiGo,24476
|
|
5
|
+
pulumi_venafi/get_cloud_keystore.py,sha256=svYPOyqizrLEUSApjrkQv5_a8Z_LPcO6RZ5HAMxKOLo,7050
|
|
6
|
+
pulumi_venafi/get_cloud_provider.py,sha256=7jVHrBl28kEIMHW3xgKgDIC-7xm7YiI_HmeL3TfXgyw,6181
|
|
7
|
+
pulumi_venafi/policy.py,sha256=pQo2E6SmnrY60cGMVI8hMYYDZoeZupCQVu0gNRK6duQ,12272
|
|
8
|
+
pulumi_venafi/provider.py,sha256=Xp3-2MMDQaOineoRkIvh5K5KQGszrU2v0XsUsgPAxq0,25311
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=DGsxS5sZI1YiLOR1iBCwyCJBZjLc6s95vXRFnQ5gnoM,83
|
|
10
|
+
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pulumi_venafi/ssh_certificate.py,sha256=aumPqIZbWWHF_7BG3t3OdmrOBW04vDDg0fuVwloed50,57662
|
|
12
|
+
pulumi_venafi/ssh_config.py,sha256=UsZqU43kknxiqU4z_EpvAsFWykO9k1mTaQFXCsDtP88,9084
|
|
13
|
+
pulumi_venafi/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
14
|
+
pulumi_venafi/config/__init__.pyi,sha256=OKDklpjpTCYv9SvZDtUCecHveEDvEQhenyW_5kd5sC4,2297
|
|
15
|
+
pulumi_venafi/config/vars.py,sha256=wIvhKBxlTOCI1WysCoFhXVupbPIC0ngKdO5Fwsyqkf0,3946
|
|
16
|
+
pulumi_venafi-1.12.0a1753398192.dist-info/METADATA,sha256=ZKuP8hAXC-GIl7M4ZLx02Ys8Csmw8LaGGxdU-ez89Mo,3677
|
|
17
|
+
pulumi_venafi-1.12.0a1753398192.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
pulumi_venafi-1.12.0a1753398192.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.12.0a1753398192.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
pulumi_venafi/__init__.py,sha256=HPAfVYIP23bq5uLrAgvfDBHfhkPcjkFEMr6heNHJ_Jc,1727
|
|
2
|
-
pulumi_venafi/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
-
pulumi_venafi/certificate.py,sha256=aiC5n_57ONFvjCN7P1utLX6EnRLAiY09kOAxDyqm2r4,65262
|
|
4
|
-
pulumi_venafi/cloud_keystore_installation.py,sha256=ndtbAwddxOrj3ps61iR7-r706j21YXUzld1bAXqktM8,24201
|
|
5
|
-
pulumi_venafi/get_cloud_keystore.py,sha256=sbkjO9-4gMnjFeJzh0d3LZKibXUCePWORtvk-3tLJqo,6986
|
|
6
|
-
pulumi_venafi/get_cloud_provider.py,sha256=cImL1dLLmoMiktJbhUKQxhlVGbzMn6VjlU8JOVNOWYY,6110
|
|
7
|
-
pulumi_venafi/policy.py,sha256=FUfhAuB2dJLW30M4EwwcXeNCjtUPBbjHpZhKE8lrqV8,12183
|
|
8
|
-
pulumi_venafi/provider.py,sha256=etkBSYFOJYo9W40QxpmzHntcakob18dZ5DRDog4RP0s,24932
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=qJg4-75nmEYA9uBTW5D4cvY9ObKW8ALJ0luBX2WfHHM,83
|
|
10
|
-
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pulumi_venafi/ssh_certificate.py,sha256=7D-9AzTKVo6eIrWhRlmiGysspVjC9CtPhCUUL8G0-Sk,56741
|
|
12
|
-
pulumi_venafi/ssh_config.py,sha256=Fu-o72tqoTgTqo6tac-pLKT4a2XKCrdwWI9EJyunOC8,8985
|
|
13
|
-
pulumi_venafi/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
14
|
-
pulumi_venafi/config/__init__.pyi,sha256=Mhh1xlWS0Lis8c3dOAP6oK2UldM3PVViSkNJp_w28rc,2296
|
|
15
|
-
pulumi_venafi/config/vars.py,sha256=WlsTiRCx63W1kAwt4KowAONA4lTT3IC9_PXY44SSpIs,3805
|
|
16
|
-
pulumi_venafi-1.12.0a1753339650.dist-info/METADATA,sha256=kwTODwWhGPgbewpGVk2iJO8SI1bNo6wiVrAQFg8czAc,3677
|
|
17
|
-
pulumi_venafi-1.12.0a1753339650.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
-
pulumi_venafi-1.12.0a1753339650.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
-
pulumi_venafi-1.12.0a1753339650.dist-info/RECORD,,
|
{pulumi_venafi-1.12.0a1753339650.dist-info → pulumi_venafi-1.12.0a1753398192.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|