pulumi-consul 3.12.0a1710156214__py3-none-any.whl → 3.13.0a1736832526__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-consul might be problematic. Click here for more details.
- pulumi_consul/__init__.py +10 -0
- pulumi_consul/_inputs.py +1592 -31
- pulumi_consul/_utilities.py +41 -5
- pulumi_consul/acl_auth_method.py +17 -22
- pulumi_consul/acl_binding_rule.py +12 -9
- pulumi_consul/acl_policy.py +7 -6
- pulumi_consul/acl_role.py +37 -32
- pulumi_consul/acl_role_policy_attachment.py +13 -10
- pulumi_consul/acl_token.py +34 -29
- pulumi_consul/acl_token_policy_attachment.py +5 -0
- pulumi_consul/acl_token_role_attachment.py +5 -0
- pulumi_consul/admin_partition.py +11 -6
- pulumi_consul/agent_service.py +7 -4
- pulumi_consul/autopilot_config.py +5 -4
- pulumi_consul/catalog_entry.py +16 -66
- pulumi_consul/certificate_authority.py +8 -49
- pulumi_consul/config/__init__.pyi +5 -0
- pulumi_consul/config/outputs.py +5 -0
- pulumi_consul/config/vars.py +5 -0
- pulumi_consul/config_entry.py +57 -46
- pulumi_consul/config_entry_service_defaults.py +54 -49
- pulumi_consul/config_entry_service_intentions.py +80 -75
- pulumi_consul/config_entry_service_resolver.py +94 -91
- pulumi_consul/config_entry_service_router.py +31 -66
- pulumi_consul/config_entry_service_splitter.py +102 -95
- pulumi_consul/config_entry_v2_exported_services.py +479 -0
- pulumi_consul/get_acl_auth_method.py +26 -12
- pulumi_consul/get_acl_policy.py +20 -9
- pulumi_consul/get_acl_role.py +24 -9
- pulumi_consul/get_acl_token.py +25 -9
- pulumi_consul/get_acl_token_secret_id.py +29 -15
- pulumi_consul/get_agent_config.py +17 -9
- pulumi_consul/get_agent_self.py +82 -5
- pulumi_consul/get_autopilot_health.py +16 -9
- pulumi_consul/get_catalog_nodes.py +21 -9
- pulumi_consul/get_catalog_service.py +56 -13
- pulumi_consul/get_catalog_services.py +53 -9
- pulumi_consul/get_config_entry.py +20 -5
- pulumi_consul/get_config_entry_v2_exported_services.py +232 -0
- pulumi_consul/get_datacenters.py +12 -5
- pulumi_consul/get_key_prefix.py +55 -46
- pulumi_consul/get_keys.py +44 -34
- pulumi_consul/get_network_area_members.py +26 -20
- pulumi_consul/get_network_segments.py +22 -18
- pulumi_consul/get_nodes.py +21 -9
- pulumi_consul/get_peering.py +22 -9
- pulumi_consul/get_peerings.py +14 -9
- pulumi_consul/get_service.py +56 -13
- pulumi_consul/get_service_health.py +28 -5
- pulumi_consul/get_services.py +53 -9
- pulumi_consul/intention.py +15 -18
- pulumi_consul/key_prefix.py +42 -50
- pulumi_consul/keys.py +26 -34
- pulumi_consul/license.py +9 -6
- pulumi_consul/namespace.py +7 -4
- pulumi_consul/namespace_policy_attachment.py +5 -0
- pulumi_consul/namespace_role_attachment.py +5 -0
- pulumi_consul/network_area.py +11 -19
- pulumi_consul/node.py +17 -21
- pulumi_consul/outputs.py +30 -27
- pulumi_consul/peering.py +13 -22
- pulumi_consul/peering_token.py +55 -15
- pulumi_consul/prepared_query.py +99 -103
- pulumi_consul/provider.py +11 -6
- pulumi_consul/pulumi-plugin.json +2 -1
- pulumi_consul/service.py +90 -29
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/METADATA +7 -6
- pulumi_consul-3.13.0a1736832526.dist-info/RECORD +72 -0
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/WHEEL +1 -1
- pulumi_consul-3.12.0a1710156214.dist-info/RECORD +0 -70
- {pulumi_consul-3.12.0a1710156214.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -26,9 +31,9 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
26
31
|
The set of arguments for constructing a ConfigEntryServiceIntentions resource.
|
|
27
32
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsJwtArgs']]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
28
33
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
29
|
-
:param pulumi.Input[str] name: Specifies
|
|
30
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
31
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
34
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
35
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
36
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
32
37
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsSourceArgs']]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
33
38
|
"""
|
|
34
39
|
if jwts is not None:
|
|
@@ -72,7 +77,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
72
77
|
@pulumi.getter
|
|
73
78
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
74
79
|
"""
|
|
75
|
-
Specifies
|
|
80
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
76
81
|
"""
|
|
77
82
|
return pulumi.get(self, "name")
|
|
78
83
|
|
|
@@ -84,7 +89,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
84
89
|
@pulumi.getter
|
|
85
90
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
86
91
|
"""
|
|
87
|
-
Specifies the
|
|
92
|
+
Specifies the namespace to apply the configuration entry.
|
|
88
93
|
"""
|
|
89
94
|
return pulumi.get(self, "namespace")
|
|
90
95
|
|
|
@@ -96,7 +101,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
96
101
|
@pulumi.getter
|
|
97
102
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
98
103
|
"""
|
|
99
|
-
Specifies the
|
|
104
|
+
Specifies the admin partition to apply the configuration entry.
|
|
100
105
|
"""
|
|
101
106
|
return pulumi.get(self, "partition")
|
|
102
107
|
|
|
@@ -130,9 +135,9 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
130
135
|
Input properties used for looking up and filtering ConfigEntryServiceIntentions resources.
|
|
131
136
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsJwtArgs']]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
132
137
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
133
|
-
:param pulumi.Input[str] name: Specifies
|
|
134
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
135
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
138
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
139
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
140
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
136
141
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsSourceArgs']]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
137
142
|
"""
|
|
138
143
|
if jwts is not None:
|
|
@@ -176,7 +181,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
176
181
|
@pulumi.getter
|
|
177
182
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
178
183
|
"""
|
|
179
|
-
Specifies
|
|
184
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
180
185
|
"""
|
|
181
186
|
return pulumi.get(self, "name")
|
|
182
187
|
|
|
@@ -188,7 +193,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
188
193
|
@pulumi.getter
|
|
189
194
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
190
195
|
"""
|
|
191
|
-
Specifies the
|
|
196
|
+
Specifies the namespace to apply the configuration entry.
|
|
192
197
|
"""
|
|
193
198
|
return pulumi.get(self, "namespace")
|
|
194
199
|
|
|
@@ -200,7 +205,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
200
205
|
@pulumi.getter
|
|
201
206
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
202
207
|
"""
|
|
203
|
-
Specifies the
|
|
208
|
+
Specifies the admin partition to apply the configuration entry.
|
|
204
209
|
"""
|
|
205
210
|
return pulumi.get(self, "partition")
|
|
206
211
|
|
|
@@ -226,23 +231,23 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
226
231
|
def __init__(__self__,
|
|
227
232
|
resource_name: str,
|
|
228
233
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
229
|
-
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
234
|
+
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]]] = None,
|
|
230
235
|
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
231
236
|
name: Optional[pulumi.Input[str]] = None,
|
|
232
237
|
namespace: Optional[pulumi.Input[str]] = None,
|
|
233
238
|
partition: Optional[pulumi.Input[str]] = None,
|
|
234
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
239
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]]] = None,
|
|
235
240
|
__props__=None):
|
|
236
241
|
"""
|
|
237
242
|
## Example Usage
|
|
238
243
|
|
|
239
|
-
<!--Start PulumiCodeChooser -->
|
|
240
244
|
```python
|
|
241
245
|
import pulumi
|
|
242
246
|
import json
|
|
243
247
|
import pulumi_consul as consul
|
|
244
248
|
|
|
245
|
-
jwt_provider = consul.ConfigEntry("
|
|
249
|
+
jwt_provider = consul.ConfigEntry("jwt_provider",
|
|
250
|
+
name="okta",
|
|
246
251
|
kind="jwt-provider",
|
|
247
252
|
config_json=json.dumps({
|
|
248
253
|
"ClockSkewSeconds": 30,
|
|
@@ -255,41 +260,41 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
255
260
|
},
|
|
256
261
|
}))
|
|
257
262
|
web = consul.ConfigEntryServiceIntentions("web",
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
+
name="web",
|
|
264
|
+
jwts=[{
|
|
265
|
+
"providers": [{
|
|
266
|
+
"name": jwt_provider.name,
|
|
267
|
+
"verify_claims": [{
|
|
268
|
+
"paths": [
|
|
263
269
|
"perms",
|
|
264
270
|
"role",
|
|
265
271
|
],
|
|
266
|
-
value
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
272
|
+
"value": "admin",
|
|
273
|
+
}],
|
|
274
|
+
}],
|
|
275
|
+
}],
|
|
270
276
|
sources=[
|
|
271
|
-
|
|
272
|
-
name
|
|
273
|
-
type
|
|
274
|
-
action
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
name
|
|
278
|
-
type
|
|
279
|
-
action
|
|
280
|
-
|
|
277
|
+
{
|
|
278
|
+
"name": "frontend-webapp",
|
|
279
|
+
"type": "consul",
|
|
280
|
+
"action": "allow",
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "nightly-cronjob",
|
|
284
|
+
"type": "consul",
|
|
285
|
+
"action": "deny",
|
|
286
|
+
},
|
|
281
287
|
])
|
|
282
288
|
```
|
|
283
|
-
<!--End PulumiCodeChooser -->
|
|
284
289
|
|
|
285
290
|
:param str resource_name: The name of the resource.
|
|
286
291
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
287
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
292
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
288
293
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
289
|
-
:param pulumi.Input[str] name: Specifies
|
|
290
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
291
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
292
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
294
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
295
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
296
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
297
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
293
298
|
"""
|
|
294
299
|
...
|
|
295
300
|
@overload
|
|
@@ -300,13 +305,13 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
300
305
|
"""
|
|
301
306
|
## Example Usage
|
|
302
307
|
|
|
303
|
-
<!--Start PulumiCodeChooser -->
|
|
304
308
|
```python
|
|
305
309
|
import pulumi
|
|
306
310
|
import json
|
|
307
311
|
import pulumi_consul as consul
|
|
308
312
|
|
|
309
|
-
jwt_provider = consul.ConfigEntry("
|
|
313
|
+
jwt_provider = consul.ConfigEntry("jwt_provider",
|
|
314
|
+
name="okta",
|
|
310
315
|
kind="jwt-provider",
|
|
311
316
|
config_json=json.dumps({
|
|
312
317
|
"ClockSkewSeconds": 30,
|
|
@@ -319,32 +324,32 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
319
324
|
},
|
|
320
325
|
}))
|
|
321
326
|
web = consul.ConfigEntryServiceIntentions("web",
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
+
name="web",
|
|
328
|
+
jwts=[{
|
|
329
|
+
"providers": [{
|
|
330
|
+
"name": jwt_provider.name,
|
|
331
|
+
"verify_claims": [{
|
|
332
|
+
"paths": [
|
|
327
333
|
"perms",
|
|
328
334
|
"role",
|
|
329
335
|
],
|
|
330
|
-
value
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
336
|
+
"value": "admin",
|
|
337
|
+
}],
|
|
338
|
+
}],
|
|
339
|
+
}],
|
|
334
340
|
sources=[
|
|
335
|
-
|
|
336
|
-
name
|
|
337
|
-
type
|
|
338
|
-
action
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
name
|
|
342
|
-
type
|
|
343
|
-
action
|
|
344
|
-
|
|
341
|
+
{
|
|
342
|
+
"name": "frontend-webapp",
|
|
343
|
+
"type": "consul",
|
|
344
|
+
"action": "allow",
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "nightly-cronjob",
|
|
348
|
+
"type": "consul",
|
|
349
|
+
"action": "deny",
|
|
350
|
+
},
|
|
345
351
|
])
|
|
346
352
|
```
|
|
347
|
-
<!--End PulumiCodeChooser -->
|
|
348
353
|
|
|
349
354
|
:param str resource_name: The name of the resource.
|
|
350
355
|
:param ConfigEntryServiceIntentionsArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -361,12 +366,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
361
366
|
def _internal_init(__self__,
|
|
362
367
|
resource_name: str,
|
|
363
368
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
364
|
-
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
369
|
+
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]]] = None,
|
|
365
370
|
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
366
371
|
name: Optional[pulumi.Input[str]] = None,
|
|
367
372
|
namespace: Optional[pulumi.Input[str]] = None,
|
|
368
373
|
partition: Optional[pulumi.Input[str]] = None,
|
|
369
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
374
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]]] = None,
|
|
370
375
|
__props__=None):
|
|
371
376
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
372
377
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -392,12 +397,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
392
397
|
def get(resource_name: str,
|
|
393
398
|
id: pulumi.Input[str],
|
|
394
399
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
395
|
-
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
400
|
+
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]]] = None,
|
|
396
401
|
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
397
402
|
name: Optional[pulumi.Input[str]] = None,
|
|
398
403
|
namespace: Optional[pulumi.Input[str]] = None,
|
|
399
404
|
partition: Optional[pulumi.Input[str]] = None,
|
|
400
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
405
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]]] = None) -> 'ConfigEntryServiceIntentions':
|
|
401
406
|
"""
|
|
402
407
|
Get an existing ConfigEntryServiceIntentions resource's state with the given name, id, and optional extra
|
|
403
408
|
properties used to qualify the lookup.
|
|
@@ -405,12 +410,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
405
410
|
:param str resource_name: The unique name of the resulting resource.
|
|
406
411
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
407
412
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
408
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
413
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
409
414
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
410
|
-
:param pulumi.Input[str] name: Specifies
|
|
411
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
412
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
413
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
415
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
416
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
417
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
418
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
414
419
|
"""
|
|
415
420
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
416
421
|
|
|
@@ -444,7 +449,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
444
449
|
@pulumi.getter
|
|
445
450
|
def name(self) -> pulumi.Output[str]:
|
|
446
451
|
"""
|
|
447
|
-
Specifies
|
|
452
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
448
453
|
"""
|
|
449
454
|
return pulumi.get(self, "name")
|
|
450
455
|
|
|
@@ -452,7 +457,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
452
457
|
@pulumi.getter
|
|
453
458
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
454
459
|
"""
|
|
455
|
-
Specifies the
|
|
460
|
+
Specifies the namespace to apply the configuration entry.
|
|
456
461
|
"""
|
|
457
462
|
return pulumi.get(self, "namespace")
|
|
458
463
|
|
|
@@ -460,7 +465,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
460
465
|
@pulumi.getter
|
|
461
466
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
462
467
|
"""
|
|
463
|
-
Specifies the
|
|
468
|
+
Specifies the admin partition to apply the configuration entry.
|
|
464
469
|
"""
|
|
465
470
|
return pulumi.get(self, "partition")
|
|
466
471
|
|