pulumi-consul 3.12.0a1713331566__py3-none-any.whl → 3.12.0a1713461993__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.

Files changed (37) hide show
  1. pulumi_consul/acl_auth_method.py +4 -0
  2. pulumi_consul/acl_binding_rule.py +2 -0
  3. pulumi_consul/acl_policy.py +2 -2
  4. pulumi_consul/acl_role.py +4 -0
  5. pulumi_consul/acl_role_policy_attachment.py +8 -6
  6. pulumi_consul/acl_token.py +14 -10
  7. pulumi_consul/admin_partition.py +6 -2
  8. pulumi_consul/agent_service.py +2 -0
  9. pulumi_consul/catalog_entry.py +0 -46
  10. pulumi_consul/config_entry.py +52 -22
  11. pulumi_consul/config_entry_service_intentions.py +6 -2
  12. pulumi_consul/config_entry_service_resolver.py +36 -34
  13. pulumi_consul/config_entry_service_router.py +0 -40
  14. pulumi_consul/config_entry_service_splitter.py +8 -2
  15. pulumi_consul/get_acl_token_secret_id.py +8 -6
  16. pulumi_consul/get_catalog_service.py +34 -0
  17. pulumi_consul/get_catalog_services.py +36 -0
  18. pulumi_consul/get_key_prefix.py +18 -18
  19. pulumi_consul/get_keys.py +4 -6
  20. pulumi_consul/get_network_area_members.py +6 -6
  21. pulumi_consul/get_network_segments.py +4 -4
  22. pulumi_consul/get_service.py +34 -0
  23. pulumi_consul/get_services.py +36 -0
  24. pulumi_consul/intention.py +10 -10
  25. pulumi_consul/key_prefix.py +26 -26
  26. pulumi_consul/keys.py +6 -6
  27. pulumi_consul/license.py +4 -2
  28. pulumi_consul/namespace.py +2 -0
  29. pulumi_consul/node.py +6 -2
  30. pulumi_consul/peering.py +8 -18
  31. pulumi_consul/prepared_query.py +56 -52
  32. pulumi_consul/service.py +76 -2
  33. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713461993.dist-info}/METADATA +1 -1
  34. pulumi_consul-3.12.0a1713461993.dist-info/RECORD +70 -0
  35. pulumi_consul-3.12.0a1713331566.dist-info/RECORD +0 -70
  36. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713461993.dist-info}/WHEEL +0 -0
  37. {pulumi_consul-3.12.0a1713331566.dist-info → pulumi_consul-3.12.0a1713461993.dist-info}/top_level.txt +0 -0
@@ -325,23 +325,23 @@ class KeyPrefix(pulumi.CustomResource):
325
325
  import pulumi
326
326
  import pulumi_consul as consul
327
327
 
328
- myapp_config = consul.KeyPrefix("myappConfig",
328
+ myapp_config = consul.KeyPrefix("myapp_config",
329
329
  datacenter="nyc1",
330
+ token="abcd",
330
331
  path_prefix="myapp/config/",
331
- subkey_collection=[consul.KeyPrefixSubkeyCollectionArgs(
332
- flags=2,
333
- path="database/password",
334
- value=aws_db_instance["app"]["password"],
335
- )],
336
332
  subkeys={
337
- "database/hostname": aws_db_instance["app"]["address"],
338
- "database/name": aws_db_instance["app"]["name"],
339
- "database/port": aws_db_instance["app"]["port"],
340
- "database/username": aws_db_instance["app"]["username"],
341
- "elb_cname": aws_elb["app"]["dns_name"],
342
- "s3_bucket_name": aws_s3_bucket["app"]["bucket"],
333
+ "elb_cname": app_aws_elb["dnsName"],
334
+ "s3_bucket_name": app_aws_s3_bucket["bucket"],
335
+ "database/hostname": app["address"],
336
+ "database/port": app["port"],
337
+ "database/username": app["username"],
338
+ "database/name": app["name"],
343
339
  },
344
- token="abcd")
340
+ subkey_collection=[consul.KeyPrefixSubkeyCollectionArgs(
341
+ path="database/password",
342
+ value=app["password"],
343
+ flags=2,
344
+ )])
345
345
  ```
346
346
  <!--End PulumiCodeChooser -->
347
347
 
@@ -386,23 +386,23 @@ class KeyPrefix(pulumi.CustomResource):
386
386
  import pulumi
387
387
  import pulumi_consul as consul
388
388
 
389
- myapp_config = consul.KeyPrefix("myappConfig",
389
+ myapp_config = consul.KeyPrefix("myapp_config",
390
390
  datacenter="nyc1",
391
+ token="abcd",
391
392
  path_prefix="myapp/config/",
392
- subkey_collection=[consul.KeyPrefixSubkeyCollectionArgs(
393
- flags=2,
394
- path="database/password",
395
- value=aws_db_instance["app"]["password"],
396
- )],
397
393
  subkeys={
398
- "database/hostname": aws_db_instance["app"]["address"],
399
- "database/name": aws_db_instance["app"]["name"],
400
- "database/port": aws_db_instance["app"]["port"],
401
- "database/username": aws_db_instance["app"]["username"],
402
- "elb_cname": aws_elb["app"]["dns_name"],
403
- "s3_bucket_name": aws_s3_bucket["app"]["bucket"],
394
+ "elb_cname": app_aws_elb["dnsName"],
395
+ "s3_bucket_name": app_aws_s3_bucket["bucket"],
396
+ "database/hostname": app["address"],
397
+ "database/port": app["port"],
398
+ "database/username": app["username"],
399
+ "database/name": app["name"],
404
400
  },
405
- token="abcd")
401
+ subkey_collection=[consul.KeyPrefixSubkeyCollectionArgs(
402
+ path="database/password",
403
+ value=app["password"],
404
+ flags=2,
405
+ )])
406
406
  ```
407
407
  <!--End PulumiCodeChooser -->
408
408
 
pulumi_consul/keys.py CHANGED
@@ -254,11 +254,11 @@ class Keys(pulumi.CustomResource):
254
254
 
255
255
  app = consul.Keys("app",
256
256
  datacenter="nyc1",
257
+ token="abcd",
257
258
  keys=[consul.KeysKeyArgs(
258
259
  path="service/app/elb_address",
259
- value=aws_elb["app"]["dns_name"],
260
- )],
261
- token="abcd")
260
+ value=app_aws_elb["dnsName"],
261
+ )])
262
262
  ```
263
263
  <!--End PulumiCodeChooser -->
264
264
 
@@ -289,11 +289,11 @@ class Keys(pulumi.CustomResource):
289
289
 
290
290
  app = consul.Keys("app",
291
291
  datacenter="nyc1",
292
+ token="abcd",
292
293
  keys=[consul.KeysKeyArgs(
293
294
  path="service/app/elb_address",
294
- value=aws_elb["app"]["dns_name"],
295
- )],
296
- token="abcd")
295
+ value=app_aws_elb["dnsName"],
296
+ )])
297
297
  ```
298
298
  <!--End PulumiCodeChooser -->
299
299
 
pulumi_consul/license.py CHANGED
@@ -275,8 +275,9 @@ class License(pulumi.CustomResource):
275
275
  ```python
276
276
  import pulumi
277
277
  import pulumi_consul as consul
278
+ import pulumi_std as std
278
279
 
279
- license = consul.License("license", license=(lambda path: open(path).read())("license.hclic"))
280
+ license = consul.License("license", license=std.file(input="license.hclic").result)
280
281
  ```
281
282
  <!--End PulumiCodeChooser -->
282
283
 
@@ -305,8 +306,9 @@ class License(pulumi.CustomResource):
305
306
  ```python
306
307
  import pulumi
307
308
  import pulumi_consul as consul
309
+ import pulumi_std as std
308
310
 
309
- license = consul.License("license", license=(lambda path: open(path).read())("license.hclic"))
311
+ license = consul.License("license", license=std.file(input="license.hclic").result)
310
312
  ```
311
313
  <!--End PulumiCodeChooser -->
312
314
 
@@ -244,6 +244,7 @@ class Namespace(pulumi.CustomResource):
244
244
  import pulumi_consul as consul
245
245
 
246
246
  production = consul.Namespace("production",
247
+ name="production",
247
248
  description="Production namespace",
248
249
  meta={
249
250
  "foo": "bar",
@@ -288,6 +289,7 @@ class Namespace(pulumi.CustomResource):
288
289
  import pulumi_consul as consul
289
290
 
290
291
  production = consul.Namespace("production",
292
+ name="production",
291
293
  description="Production namespace",
292
294
  meta={
293
295
  "foo": "bar",
pulumi_consul/node.py CHANGED
@@ -253,7 +253,9 @@ class Node(pulumi.CustomResource):
253
253
  import pulumi
254
254
  import pulumi_consul as consul
255
255
 
256
- foobar = consul.Node("foobar", address="192.168.10.10")
256
+ foobar = consul.Node("foobar",
257
+ address="192.168.10.10",
258
+ name="foobar")
257
259
  ```
258
260
  <!--End PulumiCodeChooser -->
259
261
 
@@ -290,7 +292,9 @@ class Node(pulumi.CustomResource):
290
292
  import pulumi
291
293
  import pulumi_consul as consul
292
294
 
293
- foobar = consul.Node("foobar", address="192.168.10.10")
295
+ foobar = consul.Node("foobar",
296
+ address="192.168.10.10",
297
+ name="foobar")
294
298
  ```
295
299
  <!--End PulumiCodeChooser -->
296
300
 
pulumi_consul/peering.py CHANGED
@@ -243,18 +243,13 @@ class Peering(pulumi.CustomResource):
243
243
  import pulumi
244
244
  import pulumi_consul as consul
245
245
 
246
- # Create a peering between the EU and US Consul clusters
247
- eu = consul.Provider("eu", address="eu-cluster:8500")
248
- us = consul.Provider("us", address="us-cluster:8500")
249
- eu_us_peering_token = consul.PeeringToken("eu-usPeeringToken", peer_name="eu-cluster",
250
- opts=pulumi.ResourceOptions(provider=consul["us"]))
251
- eu_us_peering = consul.Peering("eu-usPeering",
246
+ eu_us = consul.PeeringToken("eu-us", peer_name="eu-cluster")
247
+ eu_us_peering = consul.Peering("eu-us",
252
248
  peer_name="eu-cluster",
253
- peering_token=consul_peering_token["token"]["peering_token"],
249
+ peering_token=token["peeringToken"],
254
250
  meta={
255
251
  "hello": "world",
256
- },
257
- opts=pulumi.ResourceOptions(provider=consul["eu"]))
252
+ })
258
253
  ```
259
254
  <!--End PulumiCodeChooser -->
260
255
 
@@ -286,18 +281,13 @@ class Peering(pulumi.CustomResource):
286
281
  import pulumi
287
282
  import pulumi_consul as consul
288
283
 
289
- # Create a peering between the EU and US Consul clusters
290
- eu = consul.Provider("eu", address="eu-cluster:8500")
291
- us = consul.Provider("us", address="us-cluster:8500")
292
- eu_us_peering_token = consul.PeeringToken("eu-usPeeringToken", peer_name="eu-cluster",
293
- opts=pulumi.ResourceOptions(provider=consul["us"]))
294
- eu_us_peering = consul.Peering("eu-usPeering",
284
+ eu_us = consul.PeeringToken("eu-us", peer_name="eu-cluster")
285
+ eu_us_peering = consul.Peering("eu-us",
295
286
  peer_name="eu-cluster",
296
- peering_token=consul_peering_token["token"]["peering_token"],
287
+ peering_token=token["peeringToken"],
297
288
  meta={
298
289
  "hello": "world",
299
- },
300
- opts=pulumi.ResourceOptions(provider=consul["eu"]))
290
+ })
301
291
  ```
302
292
  <!--End PulumiCodeChooser -->
303
293
 
@@ -594,53 +594,55 @@ class PreparedQuery(pulumi.CustomResource):
594
594
  # healthy myapp.service.consul instance that has the active tag and not
595
595
  # the standby tag.
596
596
  myapp_query = consul.PreparedQuery("myapp-query",
597
+ name="myquery",
597
598
  datacenter="us-central1",
598
- dns=consul.PreparedQueryDnsArgs(
599
- ttl="30s",
600
- ),
599
+ token="abcd",
600
+ stored_token="wxyz",
601
+ only_passing=True,
602
+ near="_agent",
603
+ service="myapp",
604
+ tags=[
605
+ "active",
606
+ "!standby",
607
+ ],
601
608
  failover=consul.PreparedQueryFailoverArgs(
609
+ nearest_n=3,
602
610
  datacenters=[
603
611
  "us-west1",
604
612
  "us-east-2",
605
613
  "asia-east1",
606
614
  ],
607
- nearest_n=3,
608
615
  ),
609
- near="_agent",
610
- only_passing=True,
611
- service="myapp",
612
- stored_token="wxyz",
613
- tags=[
614
- "active",
615
- "!standby",
616
- ],
617
- token="abcd")
616
+ dns=consul.PreparedQueryDnsArgs(
617
+ ttl="30s",
618
+ ))
618
619
  # Creates a Prepared Query Template that matches *-near-self.query.consul
619
620
  # and finds the nearest service that matches the glob character (e.g.
620
621
  # foo-near-self.query.consul will find the nearest healthy foo.service.consul).
621
622
  service_near_self = consul.PreparedQuery("service-near-self",
622
- connect=True,
623
623
  datacenter="nyc1",
624
- dns=consul.PreparedQueryDnsArgs(
625
- ttl="5m",
624
+ token="abcd",
625
+ stored_token="wxyz",
626
+ name="",
627
+ only_passing=True,
628
+ connect=True,
629
+ near="_agent",
630
+ template=consul.PreparedQueryTemplateArgs(
631
+ type="name_prefix_match",
632
+ regexp="^(.*)-near-self$",
626
633
  ),
634
+ service="${match(1)}",
627
635
  failover=consul.PreparedQueryFailoverArgs(
636
+ nearest_n=3,
628
637
  datacenters=[
629
638
  "dc2",
630
639
  "dc3",
631
640
  "dc4",
632
641
  ],
633
- nearest_n=3,
634
642
  ),
635
- near="_agent",
636
- only_passing=True,
637
- service="${match(1)}",
638
- stored_token="wxyz",
639
- template=consul.PreparedQueryTemplateArgs(
640
- regexp="^(.*)-near-self$",
641
- type="name_prefix_match",
642
- ),
643
- token="abcd")
643
+ dns=consul.PreparedQueryDnsArgs(
644
+ ttl="5m",
645
+ ))
644
646
  ```
645
647
  <!--End PulumiCodeChooser -->
646
648
 
@@ -687,53 +689,55 @@ class PreparedQuery(pulumi.CustomResource):
687
689
  # healthy myapp.service.consul instance that has the active tag and not
688
690
  # the standby tag.
689
691
  myapp_query = consul.PreparedQuery("myapp-query",
692
+ name="myquery",
690
693
  datacenter="us-central1",
691
- dns=consul.PreparedQueryDnsArgs(
692
- ttl="30s",
693
- ),
694
+ token="abcd",
695
+ stored_token="wxyz",
696
+ only_passing=True,
697
+ near="_agent",
698
+ service="myapp",
699
+ tags=[
700
+ "active",
701
+ "!standby",
702
+ ],
694
703
  failover=consul.PreparedQueryFailoverArgs(
704
+ nearest_n=3,
695
705
  datacenters=[
696
706
  "us-west1",
697
707
  "us-east-2",
698
708
  "asia-east1",
699
709
  ],
700
- nearest_n=3,
701
710
  ),
702
- near="_agent",
703
- only_passing=True,
704
- service="myapp",
705
- stored_token="wxyz",
706
- tags=[
707
- "active",
708
- "!standby",
709
- ],
710
- token="abcd")
711
+ dns=consul.PreparedQueryDnsArgs(
712
+ ttl="30s",
713
+ ))
711
714
  # Creates a Prepared Query Template that matches *-near-self.query.consul
712
715
  # and finds the nearest service that matches the glob character (e.g.
713
716
  # foo-near-self.query.consul will find the nearest healthy foo.service.consul).
714
717
  service_near_self = consul.PreparedQuery("service-near-self",
715
- connect=True,
716
718
  datacenter="nyc1",
717
- dns=consul.PreparedQueryDnsArgs(
718
- ttl="5m",
719
+ token="abcd",
720
+ stored_token="wxyz",
721
+ name="",
722
+ only_passing=True,
723
+ connect=True,
724
+ near="_agent",
725
+ template=consul.PreparedQueryTemplateArgs(
726
+ type="name_prefix_match",
727
+ regexp="^(.*)-near-self$",
719
728
  ),
729
+ service="${match(1)}",
720
730
  failover=consul.PreparedQueryFailoverArgs(
731
+ nearest_n=3,
721
732
  datacenters=[
722
733
  "dc2",
723
734
  "dc3",
724
735
  "dc4",
725
736
  ],
726
- nearest_n=3,
727
737
  ),
728
- near="_agent",
729
- only_passing=True,
730
- service="${match(1)}",
731
- stored_token="wxyz",
732
- template=consul.PreparedQueryTemplateArgs(
733
- regexp="^(.*)-near-self$",
734
- type="name_prefix_match",
735
- ),
736
- token="abcd")
738
+ dns=consul.PreparedQueryDnsArgs(
739
+ ttl="5m",
740
+ ))
737
741
  ```
738
742
  <!--End PulumiCodeChooser -->
739
743
 
pulumi_consul/service.py CHANGED
@@ -478,8 +478,11 @@ class Service(pulumi.CustomResource):
478
478
  import pulumi
479
479
  import pulumi_consul as consul
480
480
 
481
- compute = consul.Node("compute", address="www.google.com")
481
+ compute = consul.Node("compute",
482
+ name="compute-google",
483
+ address="www.google.com")
482
484
  google = consul.Service("google",
485
+ name="google",
483
486
  node=compute.name,
484
487
  port=80,
485
488
  tags=["tag0"])
@@ -494,6 +497,7 @@ class Service(pulumi.CustomResource):
494
497
  import pulumi_consul as consul
495
498
 
496
499
  google = consul.Service("google",
500
+ name="google",
497
501
  node="google",
498
502
  port=443)
499
503
  ```
@@ -501,6 +505,39 @@ class Service(pulumi.CustomResource):
501
505
 
502
506
  Register a health-check:
503
507
 
508
+ <!--Start PulumiCodeChooser -->
509
+ ```python
510
+ import pulumi
511
+ import pulumi_consul as consul
512
+
513
+ redis = consul.Service("redis",
514
+ name="redis",
515
+ node="redis",
516
+ port=6379,
517
+ checks=[consul.ServiceCheckArgs(
518
+ check_id="service:redis1",
519
+ name="Redis health check",
520
+ status="passing",
521
+ http="https://www.hashicorptest.com",
522
+ tls_skip_verify=False,
523
+ method="PUT",
524
+ interval="5s",
525
+ timeout="1s",
526
+ deregister_critical_service_after="30s",
527
+ headers=[
528
+ consul.ServiceCheckHeaderArgs(
529
+ name="foo",
530
+ values=["test"],
531
+ ),
532
+ consul.ServiceCheckHeaderArgs(
533
+ name="bar",
534
+ values=["test"],
535
+ ),
536
+ ],
537
+ )])
538
+ ```
539
+ <!--End PulumiCodeChooser -->
540
+
504
541
  :param str resource_name: The name of the resource.
505
542
  :param pulumi.ResourceOptions opts: Options for the resource.
506
543
  :param pulumi.Input[str] address: The address of the service. Defaults to the address of the node.
@@ -540,8 +577,11 @@ class Service(pulumi.CustomResource):
540
577
  import pulumi
541
578
  import pulumi_consul as consul
542
579
 
543
- compute = consul.Node("compute", address="www.google.com")
580
+ compute = consul.Node("compute",
581
+ name="compute-google",
582
+ address="www.google.com")
544
583
  google = consul.Service("google",
584
+ name="google",
545
585
  node=compute.name,
546
586
  port=80,
547
587
  tags=["tag0"])
@@ -556,6 +596,7 @@ class Service(pulumi.CustomResource):
556
596
  import pulumi_consul as consul
557
597
 
558
598
  google = consul.Service("google",
599
+ name="google",
559
600
  node="google",
560
601
  port=443)
561
602
  ```
@@ -563,6 +604,39 @@ class Service(pulumi.CustomResource):
563
604
 
564
605
  Register a health-check:
565
606
 
607
+ <!--Start PulumiCodeChooser -->
608
+ ```python
609
+ import pulumi
610
+ import pulumi_consul as consul
611
+
612
+ redis = consul.Service("redis",
613
+ name="redis",
614
+ node="redis",
615
+ port=6379,
616
+ checks=[consul.ServiceCheckArgs(
617
+ check_id="service:redis1",
618
+ name="Redis health check",
619
+ status="passing",
620
+ http="https://www.hashicorptest.com",
621
+ tls_skip_verify=False,
622
+ method="PUT",
623
+ interval="5s",
624
+ timeout="1s",
625
+ deregister_critical_service_after="30s",
626
+ headers=[
627
+ consul.ServiceCheckHeaderArgs(
628
+ name="foo",
629
+ values=["test"],
630
+ ),
631
+ consul.ServiceCheckHeaderArgs(
632
+ name="bar",
633
+ values=["test"],
634
+ ),
635
+ ],
636
+ )])
637
+ ```
638
+ <!--End PulumiCodeChooser -->
639
+
566
640
  :param str resource_name: The name of the resource.
567
641
  :param ServiceArgs args: The arguments to use to populate this resource's properties.
568
642
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_consul
3
- Version: 3.12.0a1713331566
3
+ Version: 3.12.0a1713461993
4
4
  Summary: A Pulumi package for creating and managing consul resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,70 @@
1
+ pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
+ pulumi_consul/_inputs.py,sha256=Y0SM0tucOqZ0WhBtR2ozXTkoALk9fqpGJaqTrlpM_D8,217041
3
+ pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
+ pulumi_consul/acl_auth_method.py,sha256=ap1yijkcUcrx2elpsdVaV63SdKJmVCG6F5fZ5Ibf9C8,33197
5
+ pulumi_consul/acl_binding_rule.py,sha256=3qwDV65ah76CY5uw8e08BPyxDBhGR9wl1vb1EJyrdTM,22890
6
+ pulumi_consul/acl_policy.py,sha256=6AxeqGCua8pEoHL9fwKHGyTwPbWD5p3mKN1wcfwjVOE,15780
7
+ pulumi_consul/acl_role.py,sha256=vJH_cNLh51zT72VGpkcyBjEjwDuAdYGhw8jkrzhL9Pc,24262
8
+ pulumi_consul/acl_role_policy_attachment.py,sha256=jkQ4nKBymEdKwIeG4O7Y_L8TX4ItG6vUYQOHfMIsD6k,8697
9
+ pulumi_consul/acl_token.py,sha256=iiN3YNJTvknBwaaSKnesHa3-xQBFi88ptfrLhWPYMEg,31477
10
+ pulumi_consul/acl_token_policy_attachment.py,sha256=glF99m1ImmIG7uyNOQyRNR24D1cTrsayKh-e3ANXrm8,8508
11
+ pulumi_consul/acl_token_role_attachment.py,sha256=3o1wjCqBWTVQGK-PNLQswAt8rVjiHwoUPmcvMYdHrM8,7757
12
+ pulumi_consul/admin_partition.py,sha256=ouLvdEjCD9Te-E3jZ9koe2ibYEEMouHdP0LKf56P2c0,8745
13
+ pulumi_consul/agent_service.py,sha256=09t4h17wP-Cc9mKUPlGfCG2dl7gO9RcaD8xXAAjhSy0,13143
14
+ pulumi_consul/autopilot_config.py,sha256=cVfU9Mh4dSqxAtqNw5mSZwF7IlXiIH-UsyW8Fl8ZYV0,28179
15
+ pulumi_consul/catalog_entry.py,sha256=SgNXcjc-AJRZOW8mxOu8Yx4Nqpk5TJBfIRTBdikraZA,17763
16
+ pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
17
+ pulumi_consul/config_entry.py,sha256=yYEyBAmJ09nybDAD8ep53FsF2KiMwvEUNb2jVSqPZAk,31424
18
+ pulumi_consul/config_entry_service_defaults.py,sha256=NEWQuq9H4yZfgem7wyss5Zx8c9d7W40pFYWjgdv75d0,52638
19
+ pulumi_consul/config_entry_service_intentions.py,sha256=Iqfduf4Gxajw_o6ipnIHF6kaDfFlH9a2j58JHEQs4vE,22782
20
+ pulumi_consul/config_entry_service_resolver.py,sha256=ABiARU3GKivFvShRfkJJvqToSjnGvYtv1Xrh2C_PUyc,35993
21
+ pulumi_consul/config_entry_service_router.py,sha256=LDmq_VFotxiktmZPUcHs3OVGhQphIE2HIVhIEwbNqmY,14846
22
+ pulumi_consul/config_entry_service_splitter.py,sha256=QDO0CPbaI6BMVN8q8DPb3Y6RWW9Le7owejB_4PAedyU,20558
23
+ pulumi_consul/get_acl_auth_method.py,sha256=DCcl53wetlkmDw5HHrvPCKq8llPN4e1GarQkXJzZwcI,9645
24
+ pulumi_consul/get_acl_policy.py,sha256=GPoln4Z9pJMG9nVYegoJf_XyI7pMGI1dWzaDVSiwX44,6066
25
+ pulumi_consul/get_acl_role.py,sha256=UTkbbvlf7OXlLK7n2ysm9AzNxjYPZG8KSbY7p_lyzbo,7627
26
+ pulumi_consul/get_acl_token.py,sha256=1nnw-g3CIxH1l9WRrv9NhzrQUcsA4mPxjdgXDkU_bsU,9948
27
+ pulumi_consul/get_acl_token_secret_id.py,sha256=L9oObkcJZzmpfBSkPC_GY76RAdLbF21RlTe-_ALUTfM,7009
28
+ pulumi_consul/get_agent_config.py,sha256=6DY5BK6_DTGkNz3Z-ghSy9qpyhrgMoOGA8zlmkRttxw,6099
29
+ pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
+ pulumi_consul/get_autopilot_health.py,sha256=5891L7T78VCuGE_VLh0VD3TZBgnu-elyTRwtQrjUSSA,5406
31
+ pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
+ pulumi_consul/get_catalog_service.py,sha256=CJX-xTW3FXuQaCaUmCWatSODohAV12PTFvb0_kclpKI,9743
33
+ pulumi_consul/get_catalog_services.py,sha256=IQUgyAZUF76uSJu8k5CZFVS45oZ6-_3jYgKN0cDmzgY,7250
34
+ pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
+ pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
+ pulumi_consul/get_key_prefix.py,sha256=9luqabLKQGFu7d2yrbNQ87nX05MwLoxyVd2aQQppIQQ,10791
37
+ pulumi_consul/get_keys.py,sha256=EsGvkGfesKzvQrt0nEwFRyDriBqpvRMKgs6RbzXW3bE,9531
38
+ pulumi_consul/get_network_area_members.py,sha256=RIZ1wwj--1RUyjh5klJAWKmHW-GPjYyb3G1rlOES_E0,6606
39
+ pulumi_consul/get_network_segments.py,sha256=mbX8yTODjbjm7HnAlVsZywn2CfAHkxvYoF3LLCde75A,5483
40
+ pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
+ pulumi_consul/get_peering.py,sha256=UQFjDdpWxfWglJ-7t1BH6zwu1pkS_nVJ3cSVpuZu-Ag,6440
42
+ pulumi_consul/get_peerings.py,sha256=NS1nnjxppR2aYqs_vS_EAhStZ8c4bAg7EhUXjFuoPsc,3164
43
+ pulumi_consul/get_service.py,sha256=Pua_G1c8hI89kOVQMrDDUaQuBzSGr0O6Nr7DI_ihIis,9141
44
+ pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
+ pulumi_consul/get_services.py,sha256=qJF1Ye4cSz1Of5WUEOsNRuG9bzmLe9rYg27oVIQ8tVo,6711
46
+ pulumi_consul/intention.py,sha256=sl8aMVxLnoguuiDOC5dx599pjAbqR6dRZ3pXYhSFTLk,26142
47
+ pulumi_consul/key_prefix.py,sha256=pZ2mXNgEobahSOEgyQX1i5ec0-IzaKC6ottLVYWRZlg,26371
48
+ pulumi_consul/keys.py,sha256=kSsD5wO_dRMIFTIp-K80dsg1AtxUbhFJY1AU5TR3Mk4,18025
49
+ pulumi_consul/license.py,sha256=s39VtXAVb9fTw7eXglzBY0Nwt-7YwTXHYdAFqX5s6h8,20035
50
+ pulumi_consul/namespace.py,sha256=t8K7c07cxNrN-wbW0so7owfWfkWRizwjH5H2dFHXneY,18177
51
+ pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
+ pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
+ pulumi_consul/network_area.py,sha256=_JuwzK8mj1cxHqoqIb9T_qrX0MEOGO4Cnx3f4KelV8g,19832
54
+ pulumi_consul/node.py,sha256=G6Z__hr1SbK2OkziFLCdbQWNl-flcm4R99vOVUJxYhw,18161
55
+ pulumi_consul/outputs.py,sha256=dwKmGFjl7cIpJvBW6p5Qwkdqgz8q3iEKsl3VKEOPV_k,234719
56
+ pulumi_consul/peering.py,sha256=FusDc39drMqHZRJZ-J-uZwEdo34u1Lpwz0H-62CX8hE,20478
57
+ pulumi_consul/peering_token.py,sha256=c1fFWbNBqKnNQmEt4U3mGZ9Mr5c5e2j2hnw0o4yHGqw,14221
58
+ pulumi_consul/prepared_query.py,sha256=ftUn6Utg4msYA6PwTRV0HjKUO19vzVebkhZlEiZ9fSs,53966
59
+ pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
+ pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
+ pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ pulumi_consul/service.py,sha256=3k0QxNS1U-_HXQ5yX-U8pi44iH-Pv_3G3_STbt5gZ8U,35130
63
+ pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
+ pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
+ pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
+ pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
+ pulumi_consul-3.12.0a1713461993.dist-info/METADATA,sha256=wcLBKYvs9U_gUusMJ88Wh_re4MBtn2pJVum8peT_Kdk,3944
68
+ pulumi_consul-3.12.0a1713461993.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
+ pulumi_consul-3.12.0a1713461993.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
+ pulumi_consul-3.12.0a1713461993.dist-info/RECORD,,
@@ -1,70 +0,0 @@
1
- pulumi_consul/__init__.py,sha256=WEdXDw8m0r_d5zps4HIp-KZjaIErfJLypM_JVn9whIA,8027
2
- pulumi_consul/_inputs.py,sha256=Y0SM0tucOqZ0WhBtR2ozXTkoALk9fqpGJaqTrlpM_D8,217041
3
- pulumi_consul/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_consul/acl_auth_method.py,sha256=aiUGuGWvwI9NIbtdgEIg9ZEoT9y5My9KwdoU4zYI5YA,33087
5
- pulumi_consul/acl_binding_rule.py,sha256=jVuC08OiIoiM9myAPJDAmF_K1Ft2MgO-EoLZTsywtzM,22832
6
- pulumi_consul/acl_policy.py,sha256=33_ks-t5DAvDlrbfxEUzbybmcRk63tQplXLkvvSrhBI,15722
7
- pulumi_consul/acl_role.py,sha256=014DshuxiD3zusbI4P8pW5rblt-enJhPGtGHC1aJve0,24150
8
- pulumi_consul/acl_role_policy_attachment.py,sha256=ftXBcVVeYM0cfHEnkuy7nJbvu__fxsaNlfQ2janll8w,8679
9
- pulumi_consul/acl_token.py,sha256=G85RzcvLRd7yqGzbJX3R6e7wulnW-4yWMkSKiGyGLqk,31483
10
- pulumi_consul/acl_token_policy_attachment.py,sha256=glF99m1ImmIG7uyNOQyRNR24D1cTrsayKh-e3ANXrm8,8508
11
- pulumi_consul/acl_token_role_attachment.py,sha256=3o1wjCqBWTVQGK-PNLQswAt8rVjiHwoUPmcvMYdHrM8,7757
12
- pulumi_consul/admin_partition.py,sha256=I_u4oYHj-PPNM1-5OxLN0pPu7cKuEF_ho6HYw9FK1uk,8663
13
- pulumi_consul/agent_service.py,sha256=eG43TMRo_91t9nfM9DZ8r65yYWwSe3W1bXtWuqeRoJs,13089
14
- pulumi_consul/autopilot_config.py,sha256=cVfU9Mh4dSqxAtqNw5mSZwF7IlXiIH-UsyW8Fl8ZYV0,28179
15
- pulumi_consul/catalog_entry.py,sha256=n_iirVpenRKG7_547HwPSGs9V2503tgRyhmTqqAesZM,18949
16
- pulumi_consul/certificate_authority.py,sha256=KV0uvGM4e4yC7zgoh0_DhwhyVolNvGU6F_4r8bsMkU0,14385
17
- pulumi_consul/config_entry.py,sha256=SmfzzuYn3F8noeAL3cy4PZVsM7RtDfixaR87oI7znOM,30510
18
- pulumi_consul/config_entry_service_defaults.py,sha256=NEWQuq9H4yZfgem7wyss5Zx8c9d7W40pFYWjgdv75d0,52638
19
- pulumi_consul/config_entry_service_intentions.py,sha256=XKcbpbDnUnftgcHauhaYlI2WNvXajbEAOOcyqUH2bRk,22682
20
- pulumi_consul/config_entry_service_resolver.py,sha256=SVqC3tPWjjiVFol9LffH-0mtUramvFSjMr6OYETtjTg,35945
21
- pulumi_consul/config_entry_service_router.py,sha256=jQjhFjttiWv0f1fONybipn3JsGpLQ_g7AwCKLEfsr-o,16960
22
- pulumi_consul/config_entry_service_splitter.py,sha256=QWY7JZsl40yf0k2LHnPY3-7_WzHiVTJxbiq08GbtjOI,20354
23
- pulumi_consul/get_acl_auth_method.py,sha256=DCcl53wetlkmDw5HHrvPCKq8llPN4e1GarQkXJzZwcI,9645
24
- pulumi_consul/get_acl_policy.py,sha256=GPoln4Z9pJMG9nVYegoJf_XyI7pMGI1dWzaDVSiwX44,6066
25
- pulumi_consul/get_acl_role.py,sha256=UTkbbvlf7OXlLK7n2ysm9AzNxjYPZG8KSbY7p_lyzbo,7627
26
- pulumi_consul/get_acl_token.py,sha256=1nnw-g3CIxH1l9WRrv9NhzrQUcsA4mPxjdgXDkU_bsU,9948
27
- pulumi_consul/get_acl_token_secret_id.py,sha256=wMWYRAHpM-ebyzAOpHLftJRAj9pnGe4qWHZx68UEw9I,7045
28
- pulumi_consul/get_agent_config.py,sha256=6DY5BK6_DTGkNz3Z-ghSy9qpyhrgMoOGA8zlmkRttxw,6099
29
- pulumi_consul/get_agent_self.py,sha256=-cw13p0lRJLyj8qvQp06ZZ5c18JatSdw1am6QoJZqnE,43212
30
- pulumi_consul/get_autopilot_health.py,sha256=5891L7T78VCuGE_VLh0VD3TZBgnu-elyTRwtQrjUSSA,5406
31
- pulumi_consul/get_catalog_nodes.py,sha256=nZZIzVkm74PtG34IlKugBZnX3adeQyOSNmoZz_mHKIE,5881
32
- pulumi_consul/get_catalog_service.py,sha256=U3aR3Nnbx5ZgdOzBhQFyFpxbwD2nbjKVxgt0psWZ0ZA,8753
33
- pulumi_consul/get_catalog_services.py,sha256=C19KcxqjgTS_rc2m_xhNZCt-iEeepcx-l726gA-Kj24,6190
34
- pulumi_consul/get_config_entry.py,sha256=8pHLWLT5RUVPiJj5zU2VV1xkGsT9JpLsmVwxeqbEpzE,5478
35
- pulumi_consul/get_datacenters.py,sha256=WNivbaPSVbCtwHtvdRjljUti1YWaOJtqxBBc-_7IFEc,2669
36
- pulumi_consul/get_key_prefix.py,sha256=0ENz8hzYFSQlhzMSD2OiJbWJRzL2ymF8YR5Wrz_luss,10915
37
- pulumi_consul/get_keys.py,sha256=K1lMx4Wgx-XE4VpxHP0ML950T02TzmxWjnL7yVMiPr4,9589
38
- pulumi_consul/get_network_area_members.py,sha256=c5BtALRo3Q1_PNTx4TUrarWftDP9KVSX_1t4x91dUEI,6712
39
- pulumi_consul/get_network_segments.py,sha256=nggXIInwqO0SXSs1_rn7HiwqeU1qwQ3I6OqD2bfSiho,5551
40
- pulumi_consul/get_nodes.py,sha256=ZcKZWIWuWgclQGj4QYTqKdhvQcSI_rxYZrlBakLRvsA,5359
41
- pulumi_consul/get_peering.py,sha256=UQFjDdpWxfWglJ-7t1BH6zwu1pkS_nVJ3cSVpuZu-Ag,6440
42
- pulumi_consul/get_peerings.py,sha256=NS1nnjxppR2aYqs_vS_EAhStZ8c4bAg7EhUXjFuoPsc,3164
43
- pulumi_consul/get_service.py,sha256=Xv2tI5oitx7Cf6ujV_2wnmGtw0n0MPjy4MCWKettAQ0,8151
44
- pulumi_consul/get_service_health.py,sha256=2CCrunPsyCDOjmcJXhGmSIJSMc6a-0vlvuiEAVJ80Dw,10133
45
- pulumi_consul/get_services.py,sha256=Q5d4qGcOTPTopkbdx0pTpgO3Gt5JAglPXM-4dpk0fek,5651
46
- pulumi_consul/intention.py,sha256=ho1l5csC-byPz5CgHmX5qxNsFmptRz9aVZr27VEppGY,26148
47
- pulumi_consul/key_prefix.py,sha256=WJGpLgmCyU9cL9pAG6tjSrZjKZBcB4YSAQTiIJsa1Dg,26573
48
- pulumi_consul/keys.py,sha256=muGKdHQej6ptl77B4cyYmuysMJOrUYAuiiDrg94USts,18033
49
- pulumi_consul/license.py,sha256=XHUy7eN03nJM7wUnRUf1G7xYnd9b41iJ1fgXXts9hSI,19991
50
- pulumi_consul/namespace.py,sha256=fPAJPoONW7gqanL8wxmVwbGVVo_zNMIsRaLwIHF4mHE,18115
51
- pulumi_consul/namespace_policy_attachment.py,sha256=0qlJ92SJLDdocHj8dmm0cd1LAqF-IlB5FouYhUOyATo,8200
52
- pulumi_consul/namespace_role_attachment.py,sha256=-xlic3f_MQ7JN0i0aNPEvSD7pT8vzrM0fvlUB7KLOoY,8052
53
- pulumi_consul/network_area.py,sha256=_JuwzK8mj1cxHqoqIb9T_qrX0MEOGO4Cnx3f4KelV8g,19832
54
- pulumi_consul/node.py,sha256=47QPrYj6vN7rQXutZYS0MWnNCktn583H5w2VDnuwHfE,18083
55
- pulumi_consul/outputs.py,sha256=dwKmGFjl7cIpJvBW6p5Qwkdqgz8q3iEKsl3VKEOPV_k,234719
56
- pulumi_consul/peering.py,sha256=pu4AiOobus3AJkWCuY3oE3mTUJhOJohl6Vrazw2IrZk,21220
57
- pulumi_consul/peering_token.py,sha256=c1fFWbNBqKnNQmEt4U3mGZ9Mr5c5e2j2hnw0o4yHGqw,14221
58
- pulumi_consul/prepared_query.py,sha256=v4xlennYoTLZStCTDeDAFryiYIbStHYocx1dLQQZHBM,53868
59
- pulumi_consul/provider.py,sha256=1xhCm2DWQ1CuCIy7sDnl_lzHDj4wtS2mc3OH7vQaToU,24679
60
- pulumi_consul/pulumi-plugin.json,sha256=VXjlQuI-OEXhtFLQdyJ645kCumRQ-G5oWRM1hutS4zM,43
61
- pulumi_consul/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- pulumi_consul/service.py,sha256=lbt1Fg7iDD6odUK-vBe-h9KB9zMx49JW1S-YmWjkaBs,32818
63
- pulumi_consul/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
64
- pulumi_consul/config/__init__.pyi,sha256=Xr56VkEbCA8jXnSDMCxONcnilMpQdAHs6-imo_c-TBU,2587
65
- pulumi_consul/config/outputs.py,sha256=gDtRkTfR9uCq26RXew73SpJWdrCejHeWHhoL5--_LW4,3384
66
- pulumi_consul/config/vars.py,sha256=SXNUccmf6RtLkyaTd4mMknJtP2rlISHxMcq4PUHRgpg,4255
67
- pulumi_consul-3.12.0a1713331566.dist-info/METADATA,sha256=9--3zKk4DY2_jkl-M-nIrAT3fy2p-0AVr6k6rAWrfhM,3944
68
- pulumi_consul-3.12.0a1713331566.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
- pulumi_consul-3.12.0a1713331566.dist-info/top_level.txt,sha256=SrKSXrIq8AWqnNKrd7pWSC691idGwXi9XMA-DTWwcfg,14
70
- pulumi_consul-3.12.0a1713331566.dist-info/RECORD,,