pulumi-consul 3.12.0a1709360320__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 -14
- pulumi_consul/acl_binding_rule.py +12 -5
- pulumi_consul/acl_policy.py +9 -4
- pulumi_consul/acl_role.py +39 -30
- pulumi_consul/acl_role_policy_attachment.py +15 -8
- pulumi_consul/acl_token.py +36 -27
- pulumi_consul/acl_token_policy_attachment.py +7 -2
- pulumi_consul/acl_token_role_attachment.py +11 -4
- pulumi_consul/admin_partition.py +13 -4
- pulumi_consul/agent_service.py +7 -0
- pulumi_consul/autopilot_config.py +5 -0
- pulumi_consul/catalog_entry.py +16 -62
- pulumi_consul/certificate_authority.py +10 -51
- 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 +75 -26
- pulumi_consul/config_entry_service_defaults.py +58 -51
- pulumi_consul/config_entry_service_intentions.py +80 -71
- pulumi_consul/config_entry_service_resolver.py +94 -87
- pulumi_consul/config_entry_service_router.py +31 -62
- pulumi_consul/config_entry_service_splitter.py +104 -93
- pulumi_consul/config_entry_v2_exported_services.py +479 -0
- pulumi_consul/get_acl_auth_method.py +26 -8
- pulumi_consul/get_acl_policy.py +20 -5
- pulumi_consul/get_acl_role.py +24 -5
- pulumi_consul/get_acl_token.py +25 -5
- pulumi_consul/get_acl_token_secret_id.py +29 -11
- pulumi_consul/get_agent_config.py +17 -5
- pulumi_consul/get_agent_self.py +82 -5
- pulumi_consul/get_autopilot_health.py +16 -5
- 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 -38
- pulumi_consul/get_keys.py +44 -30
- pulumi_consul/get_network_area_members.py +26 -16
- pulumi_consul/get_network_segments.py +22 -14
- pulumi_consul/get_nodes.py +21 -9
- pulumi_consul/get_peering.py +22 -5
- pulumi_consul/get_peerings.py +14 -5
- 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 +17 -12
- pulumi_consul/key_prefix.py +48 -50
- pulumi_consul/keys.py +26 -30
- pulumi_consul/license.py +9 -2
- pulumi_consul/namespace.py +13 -4
- pulumi_consul/namespace_policy_attachment.py +11 -4
- pulumi_consul/namespace_role_attachment.py +11 -4
- pulumi_consul/network_area.py +11 -15
- pulumi_consul/node.py +19 -19
- pulumi_consul/outputs.py +30 -27
- pulumi_consul/peering.py +13 -18
- pulumi_consul/peering_token.py +55 -11
- pulumi_consul/prepared_query.py +101 -101
- pulumi_consul/provider.py +11 -6
- pulumi_consul/pulumi-plugin.json +2 -1
- pulumi_consul/service.py +144 -19
- {pulumi_consul-3.12.0a1709360320.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.0a1709360320.dist-info → pulumi_consul-3.13.0a1736832526.dist-info}/WHEEL +1 -1
- pulumi_consul-3.12.0a1709360320.dist-info/RECORD +0 -70
- {pulumi_consul-3.12.0a1709360320.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,12 +231,12 @@ 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
|
|
@@ -241,7 +246,8 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
241
246
|
import json
|
|
242
247
|
import pulumi_consul as consul
|
|
243
248
|
|
|
244
|
-
jwt_provider = consul.ConfigEntry("
|
|
249
|
+
jwt_provider = consul.ConfigEntry("jwt_provider",
|
|
250
|
+
name="okta",
|
|
245
251
|
kind="jwt-provider",
|
|
246
252
|
config_json=json.dumps({
|
|
247
253
|
"ClockSkewSeconds": 30,
|
|
@@ -254,40 +260,41 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
254
260
|
},
|
|
255
261
|
}))
|
|
256
262
|
web = consul.ConfigEntryServiceIntentions("web",
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
263
|
+
name="web",
|
|
264
|
+
jwts=[{
|
|
265
|
+
"providers": [{
|
|
266
|
+
"name": jwt_provider.name,
|
|
267
|
+
"verify_claims": [{
|
|
268
|
+
"paths": [
|
|
262
269
|
"perms",
|
|
263
270
|
"role",
|
|
264
271
|
],
|
|
265
|
-
value
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
272
|
+
"value": "admin",
|
|
273
|
+
}],
|
|
274
|
+
}],
|
|
275
|
+
}],
|
|
269
276
|
sources=[
|
|
270
|
-
|
|
271
|
-
name
|
|
272
|
-
type
|
|
273
|
-
action
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
name
|
|
277
|
-
type
|
|
278
|
-
action
|
|
279
|
-
|
|
277
|
+
{
|
|
278
|
+
"name": "frontend-webapp",
|
|
279
|
+
"type": "consul",
|
|
280
|
+
"action": "allow",
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "nightly-cronjob",
|
|
284
|
+
"type": "consul",
|
|
285
|
+
"action": "deny",
|
|
286
|
+
},
|
|
280
287
|
])
|
|
281
288
|
```
|
|
282
289
|
|
|
283
290
|
:param str resource_name: The name of the resource.
|
|
284
291
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
285
|
-
: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
|
|
286
293
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
287
|
-
:param pulumi.Input[str] name: Specifies
|
|
288
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
289
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
290
|
-
: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.
|
|
291
298
|
"""
|
|
292
299
|
...
|
|
293
300
|
@overload
|
|
@@ -303,7 +310,8 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
303
310
|
import json
|
|
304
311
|
import pulumi_consul as consul
|
|
305
312
|
|
|
306
|
-
jwt_provider = consul.ConfigEntry("
|
|
313
|
+
jwt_provider = consul.ConfigEntry("jwt_provider",
|
|
314
|
+
name="okta",
|
|
307
315
|
kind="jwt-provider",
|
|
308
316
|
config_json=json.dumps({
|
|
309
317
|
"ClockSkewSeconds": 30,
|
|
@@ -316,29 +324,30 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
316
324
|
},
|
|
317
325
|
}))
|
|
318
326
|
web = consul.ConfigEntryServiceIntentions("web",
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
327
|
+
name="web",
|
|
328
|
+
jwts=[{
|
|
329
|
+
"providers": [{
|
|
330
|
+
"name": jwt_provider.name,
|
|
331
|
+
"verify_claims": [{
|
|
332
|
+
"paths": [
|
|
324
333
|
"perms",
|
|
325
334
|
"role",
|
|
326
335
|
],
|
|
327
|
-
value
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
336
|
+
"value": "admin",
|
|
337
|
+
}],
|
|
338
|
+
}],
|
|
339
|
+
}],
|
|
331
340
|
sources=[
|
|
332
|
-
|
|
333
|
-
name
|
|
334
|
-
type
|
|
335
|
-
action
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
name
|
|
339
|
-
type
|
|
340
|
-
action
|
|
341
|
-
|
|
341
|
+
{
|
|
342
|
+
"name": "frontend-webapp",
|
|
343
|
+
"type": "consul",
|
|
344
|
+
"action": "allow",
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "nightly-cronjob",
|
|
348
|
+
"type": "consul",
|
|
349
|
+
"action": "deny",
|
|
350
|
+
},
|
|
342
351
|
])
|
|
343
352
|
```
|
|
344
353
|
|
|
@@ -357,12 +366,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
357
366
|
def _internal_init(__self__,
|
|
358
367
|
resource_name: str,
|
|
359
368
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
360
|
-
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
369
|
+
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]]] = None,
|
|
361
370
|
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
362
371
|
name: Optional[pulumi.Input[str]] = None,
|
|
363
372
|
namespace: Optional[pulumi.Input[str]] = None,
|
|
364
373
|
partition: Optional[pulumi.Input[str]] = None,
|
|
365
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
374
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]]] = None,
|
|
366
375
|
__props__=None):
|
|
367
376
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
368
377
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -388,12 +397,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
388
397
|
def get(resource_name: str,
|
|
389
398
|
id: pulumi.Input[str],
|
|
390
399
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
391
|
-
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
400
|
+
jwts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsJwtArgs', 'ConfigEntryServiceIntentionsJwtArgsDict']]]]] = None,
|
|
392
401
|
meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
393
402
|
name: Optional[pulumi.Input[str]] = None,
|
|
394
403
|
namespace: Optional[pulumi.Input[str]] = None,
|
|
395
404
|
partition: Optional[pulumi.Input[str]] = None,
|
|
396
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
405
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigEntryServiceIntentionsSourceArgs', 'ConfigEntryServiceIntentionsSourceArgsDict']]]]] = None) -> 'ConfigEntryServiceIntentions':
|
|
397
406
|
"""
|
|
398
407
|
Get an existing ConfigEntryServiceIntentions resource's state with the given name, id, and optional extra
|
|
399
408
|
properties used to qualify the lookup.
|
|
@@ -401,12 +410,12 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
401
410
|
:param str resource_name: The unique name of the resulting resource.
|
|
402
411
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
403
412
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
404
|
-
: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
|
|
405
414
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
406
|
-
:param pulumi.Input[str] name: Specifies
|
|
407
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
408
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
409
|
-
: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.
|
|
410
419
|
"""
|
|
411
420
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
412
421
|
|
|
@@ -440,7 +449,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
440
449
|
@pulumi.getter
|
|
441
450
|
def name(self) -> pulumi.Output[str]:
|
|
442
451
|
"""
|
|
443
|
-
Specifies
|
|
452
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
444
453
|
"""
|
|
445
454
|
return pulumi.get(self, "name")
|
|
446
455
|
|
|
@@ -448,7 +457,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
448
457
|
@pulumi.getter
|
|
449
458
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
450
459
|
"""
|
|
451
|
-
Specifies the
|
|
460
|
+
Specifies the namespace to apply the configuration entry.
|
|
452
461
|
"""
|
|
453
462
|
return pulumi.get(self, "namespace")
|
|
454
463
|
|
|
@@ -456,7 +465,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
456
465
|
@pulumi.getter
|
|
457
466
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
458
467
|
"""
|
|
459
|
-
Specifies the
|
|
468
|
+
Specifies the admin partition to apply the configuration entry.
|
|
460
469
|
"""
|
|
461
470
|
return pulumi.get(self, "partition")
|
|
462
471
|
|