pulumi-digitalocean 4.43.0a1745559798__py3-none-any.whl → 4.44.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-digitalocean might be problematic. Click here for more details.
- pulumi_digitalocean/app.py +3 -0
- pulumi_digitalocean/cdn.py +3 -0
- pulumi_digitalocean/certificate.py +3 -0
- pulumi_digitalocean/container_registry.py +3 -0
- pulumi_digitalocean/container_registry_docker_credentials.py +3 -0
- pulumi_digitalocean/custom_image.py +3 -0
- pulumi_digitalocean/database_cluster.py +27 -24
- pulumi_digitalocean/database_connection_pool.py +3 -0
- pulumi_digitalocean/database_db.py +3 -0
- pulumi_digitalocean/database_firewall.py +3 -0
- pulumi_digitalocean/database_kafka_config.py +3 -0
- pulumi_digitalocean/database_kafka_topic.py +3 -0
- pulumi_digitalocean/database_mongodb_config.py +3 -0
- pulumi_digitalocean/database_mysql_config.py +3 -0
- pulumi_digitalocean/database_opensearch_config.py +3 -0
- pulumi_digitalocean/database_postgresql_config.py +3 -0
- pulumi_digitalocean/database_redis_config.py +3 -0
- pulumi_digitalocean/database_replica.py +3 -0
- pulumi_digitalocean/database_user.py +3 -0
- pulumi_digitalocean/dns_record.py +3 -0
- pulumi_digitalocean/domain.py +3 -0
- pulumi_digitalocean/droplet.py +3 -0
- pulumi_digitalocean/droplet_autoscale.py +3 -0
- pulumi_digitalocean/droplet_snapshot.py +3 -0
- pulumi_digitalocean/firewall.py +3 -0
- pulumi_digitalocean/floating_ip.py +3 -0
- pulumi_digitalocean/floating_ip_assignment.py +3 -0
- pulumi_digitalocean/kubernetes_cluster.py +3 -0
- pulumi_digitalocean/kubernetes_node_pool.py +3 -0
- pulumi_digitalocean/load_balancer.py +50 -14
- pulumi_digitalocean/monitor_alert.py +3 -0
- pulumi_digitalocean/partner_attachment.py +3 -0
- pulumi_digitalocean/project.py +3 -0
- pulumi_digitalocean/project_resources.py +3 -0
- pulumi_digitalocean/provider.py +3 -0
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/reserved_ip.py +3 -0
- pulumi_digitalocean/reserved_ip_assignment.py +3 -0
- pulumi_digitalocean/reserved_ipv6.py +3 -0
- pulumi_digitalocean/reserved_ipv6_assignment.py +3 -0
- pulumi_digitalocean/spaces_bucket.py +3 -0
- pulumi_digitalocean/spaces_bucket_cors_configuration.py +3 -0
- pulumi_digitalocean/spaces_bucket_object.py +3 -0
- pulumi_digitalocean/spaces_bucket_policy.py +3 -0
- pulumi_digitalocean/spaces_key.py +3 -0
- pulumi_digitalocean/ssh_key.py +3 -0
- pulumi_digitalocean/tag.py +3 -0
- pulumi_digitalocean/uptime_alert.py +3 -0
- pulumi_digitalocean/uptime_check.py +3 -0
- pulumi_digitalocean/volume.py +3 -0
- pulumi_digitalocean/volume_attachment.py +3 -0
- pulumi_digitalocean/volume_snapshot.py +3 -0
- pulumi_digitalocean/vpc.py +3 -0
- pulumi_digitalocean/vpc_peering.py +3 -0
- {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0.dist-info}/METADATA +1 -1
- pulumi_digitalocean-4.44.0.dist-info/RECORD +112 -0
- {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0.dist-info}/WHEEL +1 -1
- pulumi_digitalocean-4.43.0a1745559798.dist-info/RECORD +0 -112
- {pulumi_digitalocean-4.43.0a1745559798.dist-info → pulumi_digitalocean-4.44.0.dist-info}/top_level.txt +0 -0
|
@@ -45,6 +45,7 @@ class LoadBalancerArgs:
|
|
|
45
45
|
size_unit: Optional[pulumi.Input[builtins.int]] = None,
|
|
46
46
|
sticky_sessions: Optional[pulumi.Input['LoadBalancerStickySessionsArgs']] = None,
|
|
47
47
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
48
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
48
49
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
49
50
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None):
|
|
50
51
|
"""
|
|
@@ -69,7 +70,6 @@ class LoadBalancerArgs:
|
|
|
69
70
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
70
71
|
:param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
|
|
71
72
|
:param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
72
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
73
73
|
:param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
|
|
74
74
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
75
75
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -80,8 +80,8 @@ class LoadBalancerArgs:
|
|
|
80
80
|
:param pulumi.Input['LoadBalancerStickySessionsArgs'] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
81
81
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
82
82
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
|
|
83
|
+
:param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
83
84
|
:param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
84
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
85
85
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
86
86
|
"""
|
|
87
87
|
if algorithm is not None:
|
|
@@ -131,6 +131,8 @@ class LoadBalancerArgs:
|
|
|
131
131
|
pulumi.set(__self__, "sticky_sessions", sticky_sessions)
|
|
132
132
|
if target_load_balancer_ids is not None:
|
|
133
133
|
pulumi.set(__self__, "target_load_balancer_ids", target_load_balancer_ids)
|
|
134
|
+
if tls_cipher_policy is not None:
|
|
135
|
+
pulumi.set(__self__, "tls_cipher_policy", tls_cipher_policy)
|
|
134
136
|
if type is not None:
|
|
135
137
|
pulumi.set(__self__, "type", type)
|
|
136
138
|
if vpc_uuid is not None:
|
|
@@ -315,7 +317,6 @@ class LoadBalancerArgs:
|
|
|
315
317
|
def network_stack(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
316
318
|
"""
|
|
317
319
|
The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
318
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
319
320
|
"""
|
|
320
321
|
return pulumi.get(self, "network_stack")
|
|
321
322
|
|
|
@@ -410,12 +411,23 @@ class LoadBalancerArgs:
|
|
|
410
411
|
def target_load_balancer_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
|
411
412
|
pulumi.set(self, "target_load_balancer_ids", value)
|
|
412
413
|
|
|
414
|
+
@property
|
|
415
|
+
@pulumi.getter(name="tlsCipherPolicy")
|
|
416
|
+
def tls_cipher_policy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
417
|
+
"""
|
|
418
|
+
The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
419
|
+
"""
|
|
420
|
+
return pulumi.get(self, "tls_cipher_policy")
|
|
421
|
+
|
|
422
|
+
@tls_cipher_policy.setter
|
|
423
|
+
def tls_cipher_policy(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
424
|
+
pulumi.set(self, "tls_cipher_policy", value)
|
|
425
|
+
|
|
413
426
|
@property
|
|
414
427
|
@pulumi.getter
|
|
415
428
|
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
416
429
|
"""
|
|
417
430
|
The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
418
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
419
431
|
"""
|
|
420
432
|
return pulumi.get(self, "type")
|
|
421
433
|
|
|
@@ -465,6 +477,7 @@ class _LoadBalancerState:
|
|
|
465
477
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
466
478
|
sticky_sessions: Optional[pulumi.Input['LoadBalancerStickySessionsArgs']] = None,
|
|
467
479
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
480
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
468
481
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
469
482
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None):
|
|
470
483
|
"""
|
|
@@ -491,7 +504,6 @@ class _LoadBalancerState:
|
|
|
491
504
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
492
505
|
:param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
|
|
493
506
|
:param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
494
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
495
507
|
:param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
|
|
496
508
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
497
509
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -502,8 +514,8 @@ class _LoadBalancerState:
|
|
|
502
514
|
:param pulumi.Input['LoadBalancerStickySessionsArgs'] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
503
515
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
504
516
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
|
|
517
|
+
:param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
505
518
|
:param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
506
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
507
519
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
508
520
|
"""
|
|
509
521
|
if algorithm is not None:
|
|
@@ -561,6 +573,8 @@ class _LoadBalancerState:
|
|
|
561
573
|
pulumi.set(__self__, "sticky_sessions", sticky_sessions)
|
|
562
574
|
if target_load_balancer_ids is not None:
|
|
563
575
|
pulumi.set(__self__, "target_load_balancer_ids", target_load_balancer_ids)
|
|
576
|
+
if tls_cipher_policy is not None:
|
|
577
|
+
pulumi.set(__self__, "tls_cipher_policy", tls_cipher_policy)
|
|
564
578
|
if type is not None:
|
|
565
579
|
pulumi.set(__self__, "type", type)
|
|
566
580
|
if vpc_uuid is not None:
|
|
@@ -778,7 +792,6 @@ class _LoadBalancerState:
|
|
|
778
792
|
def network_stack(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
779
793
|
"""
|
|
780
794
|
The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
781
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
782
795
|
"""
|
|
783
796
|
return pulumi.get(self, "network_stack")
|
|
784
797
|
|
|
@@ -882,12 +895,23 @@ class _LoadBalancerState:
|
|
|
882
895
|
def target_load_balancer_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
|
883
896
|
pulumi.set(self, "target_load_balancer_ids", value)
|
|
884
897
|
|
|
898
|
+
@property
|
|
899
|
+
@pulumi.getter(name="tlsCipherPolicy")
|
|
900
|
+
def tls_cipher_policy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
901
|
+
"""
|
|
902
|
+
The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
903
|
+
"""
|
|
904
|
+
return pulumi.get(self, "tls_cipher_policy")
|
|
905
|
+
|
|
906
|
+
@tls_cipher_policy.setter
|
|
907
|
+
def tls_cipher_policy(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
908
|
+
pulumi.set(self, "tls_cipher_policy", value)
|
|
909
|
+
|
|
885
910
|
@property
|
|
886
911
|
@pulumi.getter
|
|
887
912
|
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
888
913
|
"""
|
|
889
914
|
The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
890
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
891
915
|
"""
|
|
892
916
|
return pulumi.get(self, "type")
|
|
893
917
|
|
|
@@ -909,6 +933,9 @@ class _LoadBalancerState:
|
|
|
909
933
|
|
|
910
934
|
|
|
911
935
|
class LoadBalancer(pulumi.CustomResource):
|
|
936
|
+
|
|
937
|
+
pulumi_type = "digitalocean:index/loadBalancer:LoadBalancer"
|
|
938
|
+
|
|
912
939
|
@overload
|
|
913
940
|
def __init__(__self__,
|
|
914
941
|
resource_name: str,
|
|
@@ -935,6 +962,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
935
962
|
size_unit: Optional[pulumi.Input[builtins.int]] = None,
|
|
936
963
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
937
964
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
965
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
938
966
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
939
967
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
|
|
940
968
|
__props__=None):
|
|
@@ -1005,7 +1033,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1005
1033
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
1006
1034
|
:param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
|
|
1007
1035
|
:param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
1008
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
1009
1036
|
:param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
|
|
1010
1037
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
1011
1038
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -1016,8 +1043,8 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1016
1043
|
:param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
1017
1044
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
1018
1045
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
|
|
1046
|
+
:param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
1019
1047
|
:param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
1020
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
1021
1048
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
1022
1049
|
"""
|
|
1023
1050
|
...
|
|
@@ -1108,6 +1135,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1108
1135
|
size_unit: Optional[pulumi.Input[builtins.int]] = None,
|
|
1109
1136
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
1110
1137
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1138
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
1111
1139
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1112
1140
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None,
|
|
1113
1141
|
__props__=None):
|
|
@@ -1141,6 +1169,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1141
1169
|
__props__.__dict__["size_unit"] = size_unit
|
|
1142
1170
|
__props__.__dict__["sticky_sessions"] = sticky_sessions
|
|
1143
1171
|
__props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
|
|
1172
|
+
__props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
|
|
1144
1173
|
__props__.__dict__["type"] = type
|
|
1145
1174
|
__props__.__dict__["vpc_uuid"] = vpc_uuid
|
|
1146
1175
|
__props__.__dict__["ip"] = None
|
|
@@ -1183,6 +1212,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1183
1212
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
1184
1213
|
sticky_sessions: Optional[pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']]] = None,
|
|
1185
1214
|
target_load_balancer_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
1215
|
+
tls_cipher_policy: Optional[pulumi.Input[builtins.str]] = None,
|
|
1186
1216
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1187
1217
|
vpc_uuid: Optional[pulumi.Input[builtins.str]] = None) -> 'LoadBalancer':
|
|
1188
1218
|
"""
|
|
@@ -1214,7 +1244,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1214
1244
|
:param pulumi.Input[builtins.str] name: The Load Balancer name
|
|
1215
1245
|
:param pulumi.Input[builtins.str] network: The type of network the Load Balancer is accessible from. It must be either of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
|
|
1216
1246
|
:param pulumi.Input[builtins.str] network_stack: The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
1217
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
1218
1247
|
:param pulumi.Input[builtins.str] project_id: The ID of the project that the load balancer is associated with. If no ID is provided at creation, the load balancer associates with the user's default project.
|
|
1219
1248
|
:param pulumi.Input[builtins.bool] redirect_http_to_https: A boolean value indicating whether
|
|
1220
1249
|
HTTP requests to the Load Balancer on port 80 will be redirected to HTTPS on port 443.
|
|
@@ -1225,8 +1254,8 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1225
1254
|
:param pulumi.Input[Union['LoadBalancerStickySessionsArgs', 'LoadBalancerStickySessionsArgsDict']] sticky_sessions: A `sticky_sessions` block to be assigned to the
|
|
1226
1255
|
Load Balancer. The `sticky_sessions` block is documented below. Only 1 sticky_sessions block is allowed.
|
|
1227
1256
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] target_load_balancer_ids: A list of Load Balancer IDs to be attached behind a Global Load Balancer.
|
|
1257
|
+
:param pulumi.Input[builtins.str] tls_cipher_policy: The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
1228
1258
|
:param pulumi.Input[builtins.str] type: The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
1229
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
1230
1259
|
:param pulumi.Input[builtins.str] vpc_uuid: The ID of the VPC where the load balancer will be located.
|
|
1231
1260
|
"""
|
|
1232
1261
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -1259,6 +1288,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1259
1288
|
__props__.__dict__["status"] = status
|
|
1260
1289
|
__props__.__dict__["sticky_sessions"] = sticky_sessions
|
|
1261
1290
|
__props__.__dict__["target_load_balancer_ids"] = target_load_balancer_ids
|
|
1291
|
+
__props__.__dict__["tls_cipher_policy"] = tls_cipher_policy
|
|
1262
1292
|
__props__.__dict__["type"] = type
|
|
1263
1293
|
__props__.__dict__["vpc_uuid"] = vpc_uuid
|
|
1264
1294
|
return LoadBalancer(resource_name, opts=opts, __props__=__props__)
|
|
@@ -1407,7 +1437,6 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1407
1437
|
def network_stack(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1408
1438
|
"""
|
|
1409
1439
|
The network stack determines the allocation of ipv4/ipv6 addresses to the load balancer. It must be either of `IPV4` or `DUALSTACK`. Defaults to `IPV4`.
|
|
1410
|
-
**NOTE**: this feature is in private preview, and may not be available for public use
|
|
1411
1440
|
"""
|
|
1412
1441
|
return pulumi.get(self, "network_stack")
|
|
1413
1442
|
|
|
@@ -1475,12 +1504,19 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
1475
1504
|
"""
|
|
1476
1505
|
return pulumi.get(self, "target_load_balancer_ids")
|
|
1477
1506
|
|
|
1507
|
+
@property
|
|
1508
|
+
@pulumi.getter(name="tlsCipherPolicy")
|
|
1509
|
+
def tls_cipher_policy(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1510
|
+
"""
|
|
1511
|
+
The tls cipher policy controls the cipher suites to be used by the load balancer. It must be either of `DEFAULT` or `STRONG`. Defaults to `DEFAULT`.
|
|
1512
|
+
"""
|
|
1513
|
+
return pulumi.get(self, "tls_cipher_policy")
|
|
1514
|
+
|
|
1478
1515
|
@property
|
|
1479
1516
|
@pulumi.getter
|
|
1480
1517
|
def type(self) -> pulumi.Output[builtins.str]:
|
|
1481
1518
|
"""
|
|
1482
1519
|
The type of the Load Balancer. It must be either of `REGIONAL`, `REGIONAL_NETWORK`, or `GLOBAL`. Defaults to `REGIONAL`.
|
|
1483
|
-
**NOTE**: non-`REGIONAL/GLOBAL` type may be part of closed beta feature and not available for public use.
|
|
1484
1520
|
"""
|
|
1485
1521
|
return pulumi.get(self, "type")
|
|
1486
1522
|
|
pulumi_digitalocean/project.py
CHANGED
pulumi_digitalocean/provider.py
CHANGED
|
@@ -129,6 +129,9 @@ class _SpacesBucketCorsConfigurationState:
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
class SpacesBucketCorsConfiguration(pulumi.CustomResource):
|
|
132
|
+
|
|
133
|
+
pulumi_type = "digitalocean:index/spacesBucketCorsConfiguration:SpacesBucketCorsConfiguration"
|
|
134
|
+
|
|
132
135
|
@overload
|
|
133
136
|
def __init__(__self__,
|
|
134
137
|
resource_name: str,
|
pulumi_digitalocean/ssh_key.py
CHANGED
pulumi_digitalocean/tag.py
CHANGED
pulumi_digitalocean/volume.py
CHANGED
pulumi_digitalocean/vpc.py
CHANGED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=C-ZqNpaMDzGInbUtZC2UZgOIyiYsZkiTE-dJxU0oEJ8,13599
|
|
2
|
+
pulumi_digitalocean/_enums.py,sha256=lqt4VRtPlHgoRGQ3i30H5jadSEmP8g0dmb7jAiWQeWc,9798
|
|
3
|
+
pulumi_digitalocean/_inputs.py,sha256=dEWDJjNIh84rakZFZNNexitQ8lcbUSLiWLrTgGafVBA,662972
|
|
4
|
+
pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
5
|
+
pulumi_digitalocean/app.py,sha256=qeIsxVpiB0H02a-WVZL-sNTTDRm9OVt3GDbjJ8Gkgts,25076
|
|
6
|
+
pulumi_digitalocean/cdn.py,sha256=AIMZz2umAgOXcwFn4pMC5lPPho0zEO1UPSGJeiTCKqo,22610
|
|
7
|
+
pulumi_digitalocean/certificate.py,sha256=L_ewkisZ2zAqe6FAnIeD-9CW_oB5EPDV0WeOshWSC74,29456
|
|
8
|
+
pulumi_digitalocean/container_registry.py,sha256=GMaEJMI9LL8hyETON0XWgaZ0YzXaN1D3PBOvMv7kJdw,17482
|
|
9
|
+
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=CaBQRKVF6XnDr2BxR0FdZhdRHK3mThDzmcwk6os3Pq0,18092
|
|
10
|
+
pulumi_digitalocean/custom_image.py,sha256=md2CNcktr5tdaS2WrAiPb-WG04UXTphKlY-V78JbdqE,28757
|
|
11
|
+
pulumi_digitalocean/database_cluster.py,sha256=hLFnlneLtLX1A5REKtI6Z5ZJRPJBaIRCLkABQ0ISlDg,67131
|
|
12
|
+
pulumi_digitalocean/database_connection_pool.py,sha256=6wW9hmiYMDnzUW9nYLryOZojUGUTQg4coJETsG2TmRQ,26592
|
|
13
|
+
pulumi_digitalocean/database_db.py,sha256=KaUZT6SE9dbw9E_iKA_4moeRs3yLDmQJzyxuqE4xkm8,10005
|
|
14
|
+
pulumi_digitalocean/database_firewall.py,sha256=ktaVv0eoiUoaGB44WKFIjtMKrkUFy4-yrwBTe8qozWE,15781
|
|
15
|
+
pulumi_digitalocean/database_kafka_config.py,sha256=Vzq-M-2FYUn6ozitzI3ZqThzBA2rJMgapTKegureaB8,62480
|
|
16
|
+
pulumi_digitalocean/database_kafka_topic.py,sha256=8ZeTMI8BiG4LOnr5bMYmIj8tHe1Qv1mPZDKQKg7hCy4,22739
|
|
17
|
+
pulumi_digitalocean/database_mongodb_config.py,sha256=2lqIKT3tPph8l9pbMRMpp0fhz9kIfZnGQbu481YTQZ0,33707
|
|
18
|
+
pulumi_digitalocean/database_mysql_config.py,sha256=iSZFxR3LjJXEFeqswPVU_vpR0UeuMTaxM05Aqsm9Y-o,85857
|
|
19
|
+
pulumi_digitalocean/database_opensearch_config.py,sha256=AROCdfggAGf7hCICzu-MwzeiacB3WdRwzRe5sKaCL00,138090
|
|
20
|
+
pulumi_digitalocean/database_postgresql_config.py,sha256=g9LrCHhvaWT-VtjWFs9bz9CWBOzJ-1pdQsCWlk814f4,167736
|
|
21
|
+
pulumi_digitalocean/database_redis_config.py,sha256=OcXWh26LPGEkFyaP-XAQVTloUsSvy-tAAbGRpELcqDo,41367
|
|
22
|
+
pulumi_digitalocean/database_replica.py,sha256=0w42uZQhpiuhbEI7Sv44yjiCzBSu1XKo7klDX2mi4qo,33202
|
|
23
|
+
pulumi_digitalocean/database_user.py,sha256=dVchmWVsjqFdSNPHOZpC3arzROZ8VkLEXTGH_tLQjCo,25692
|
|
24
|
+
pulumi_digitalocean/dns_record.py,sha256=vGWvlDuMqMet98BR9LkLtwnmXJZHNlWMpBxEE-Qn5Bs,28662
|
|
25
|
+
pulumi_digitalocean/domain.py,sha256=yJM1vtBhn4nrA2F0KM16SXmMSe3kRMGwI4fm8gD3UrY,11157
|
|
26
|
+
pulumi_digitalocean/droplet.py,sha256=to3NZYWVkv0roUCpBwaxpY6tTl8SZaor7S1Mtx6s5Kc,76237
|
|
27
|
+
pulumi_digitalocean/droplet_autoscale.py,sha256=Ca-NO3SsEFRZYRglEcJ2FEK0x5ACMS7Vrs_CSrmsuRA,21663
|
|
28
|
+
pulumi_digitalocean/droplet_snapshot.py,sha256=vExDXFGRDegYijCpZ1Aw7yHOOgevDCtofkUEOwTD4X0,15012
|
|
29
|
+
pulumi_digitalocean/firewall.py,sha256=6KkSrjyOejpDs8PJp8A4V5YYEPT1K0l8ol4Zvw4Zfio,28372
|
|
30
|
+
pulumi_digitalocean/floating_ip.py,sha256=wime-L-zAwvlOonebaL5fV1dvZ-w82JXXAM-53qF6YQ,13671
|
|
31
|
+
pulumi_digitalocean/floating_ip_assignment.py,sha256=qTKIbS79MwA4UMhHmCWKI1v6ET27VNPxIFq3AmS_elg,11050
|
|
32
|
+
pulumi_digitalocean/get_account.py,sha256=eWNvJWQyp09MAg8C_WohdVjcndV1F43eAV07FsgBd9k,6931
|
|
33
|
+
pulumi_digitalocean/get_app.py,sha256=9wUMm3MBwmvpLlcrjgS6x8tu4sZCQvxJDwSAOJpDn00,10194
|
|
34
|
+
pulumi_digitalocean/get_certificate.py,sha256=i-shN_vysw9VelDorbYa0ZU1Zjk6Vmar1i-0mI1s3gA,7402
|
|
35
|
+
pulumi_digitalocean/get_container_registry.py,sha256=aL3-79goOo7V2NgWtgbH6sE6rQWuY6MwT3nkCJUrMDg,8242
|
|
36
|
+
pulumi_digitalocean/get_database_ca.py,sha256=YxAPKQh2NuOhEEdMLP3wfqN2LSMsaHMamN97rHPri18,4404
|
|
37
|
+
pulumi_digitalocean/get_database_cluster.py,sha256=Ktd-jBpCPQV4xyJ_P4Xj8ZBCGlY3Mg6Ak6UyKIxWbHc,17822
|
|
38
|
+
pulumi_digitalocean/get_database_connection_pool.py,sha256=9eI9vX6VpTfS_jYUv5Icg0R_XzMQ0XJAhClWGvfiPSQ,10323
|
|
39
|
+
pulumi_digitalocean/get_database_replica.py,sha256=ak2oQqnSG-wLnyUJk8QUDHfRTfEU-y2S0Op6mkpwisQ,12160
|
|
40
|
+
pulumi_digitalocean/get_database_user.py,sha256=a84subXsDnADoeBuGY1AiJiZ1_3oOTlk10AVYt53cKI,8291
|
|
41
|
+
pulumi_digitalocean/get_domain.py,sha256=J8cUTjZcWHjU5prGLFlIIPEtdWSu9dqiYZu_77iy4kU,5771
|
|
42
|
+
pulumi_digitalocean/get_domains.py,sha256=8efRQANNKQONJUEOJIqUKd_PopfiY1NL8Yi6WH5s9s4,6890
|
|
43
|
+
pulumi_digitalocean/get_droplet.py,sha256=Kmf15nUIlbSCQnb_6h0sMCodfJyW7bfqRu-vD_CnLwY,19515
|
|
44
|
+
pulumi_digitalocean/get_droplet_autoscale.py,sha256=_qlqCfOKQEK40D-14PlJdwUlS5tU942npK8sTf44qjU,7755
|
|
45
|
+
pulumi_digitalocean/get_droplet_snapshot.py,sha256=mkrNa0ZMWXKWRmNcd4HT7Zk2iLPHVsUxrK7nPogNquA,11703
|
|
46
|
+
pulumi_digitalocean/get_droplets.py,sha256=U-iCiC4_E0ehLDsNgEXlrgr7ESgxOf0NLAe8cd4rpCw,8981
|
|
47
|
+
pulumi_digitalocean/get_firewall.py,sha256=0UTVRSAjqLHtGfk-dOhTwWVYoy9nEukOtr4sS8-fiWo,10479
|
|
48
|
+
pulumi_digitalocean/get_floating_ip.py,sha256=lX8WO2gPXLz1cNi4kbYvxg7sTnq3sxgNEzLJUAYabCc,6724
|
|
49
|
+
pulumi_digitalocean/get_image.py,sha256=WCpCXCvYz4SVxc-7Wx1O1M6Y5qTzQynN7Z0LiG-OwgA,14009
|
|
50
|
+
pulumi_digitalocean/get_images.py,sha256=jkWYcSiqnHK9LN1gVErEoYgYSEeGLw5nB0bycg01ZaM,7836
|
|
51
|
+
pulumi_digitalocean/get_kubernetes_cluster.py,sha256=mvaDzQWDuGj2a8gXs2JncopW40rtRq5lrSYDKpJmI8Y,19617
|
|
52
|
+
pulumi_digitalocean/get_kubernetes_versions.py,sha256=UKgxMiEc-BnOoQ_H8amlUunRclIV4Kvtmbz1ebqeO6Y,7823
|
|
53
|
+
pulumi_digitalocean/get_load_balancer.py,sha256=Ix3tKK9l2rptFhcgyQUGmrs52kn_sQNdQiANDK0dCy4,19224
|
|
54
|
+
pulumi_digitalocean/get_partner_attachment.py,sha256=ZDawF2-9nsN3OyV4x0BMBgqsxwsYqqLmGbo7UIe-mKw,7272
|
|
55
|
+
pulumi_digitalocean/get_project.py,sha256=6oPHX1x1mOabfMX4lPETTbCVWH_iTvb91TUFkCuHqzY,9354
|
|
56
|
+
pulumi_digitalocean/get_projects.py,sha256=8cgH0wxEATLV-TroHAPzzaHFAVvesYc5cBPhRCvZlkw,7756
|
|
57
|
+
pulumi_digitalocean/get_record.py,sha256=Ualyt6ENvkhE3yZY9n9PPn_rW74QA6XzpLjYlbsLhO0,9124
|
|
58
|
+
pulumi_digitalocean/get_records.py,sha256=mR-tzaP3sgYegc8RNXscdZAO7ydz6qyg7AIpyUhFJgU,7070
|
|
59
|
+
pulumi_digitalocean/get_region.py,sha256=35Y5CIByzqFCJZV7L3KKCMuQeoURlAtKTIkwhlbTpJ0,5981
|
|
60
|
+
pulumi_digitalocean/get_regions.py,sha256=xOCZTH8VLkFWRTpXseeSmcBxajEADFB5SmJ0HphIptE,7517
|
|
61
|
+
pulumi_digitalocean/get_reserved_ip.py,sha256=vBgi0B2pVdkYCa2yPuHuyOuDDu_cJMdg8oZNlOrV0dU,5498
|
|
62
|
+
pulumi_digitalocean/get_reserved_ipv6.py,sha256=qCMDdUZIou1leg_79rN44hCMBcaK5NoF4P62nNGQ8-E,5317
|
|
63
|
+
pulumi_digitalocean/get_sizes.py,sha256=C5zDSUTAdp6dG2krQQWMS50BKyv5fYEOJRsyoIp3bgU,5239
|
|
64
|
+
pulumi_digitalocean/get_spaces_bucket.py,sha256=jcPRlN_DE6VxxlG0k4GEwjkeXSguZZUh6_HDFMFy2fI,6789
|
|
65
|
+
pulumi_digitalocean/get_spaces_bucket_object.py,sha256=NfVTy1PIjVXgRf4lSLTA8jPBCPtE_sc3tKjEX9pReNI,17516
|
|
66
|
+
pulumi_digitalocean/get_spaces_bucket_objects.py,sha256=UNibTVrp32jAHT4zAd90WGIA58Cij-KJBCUAQSN2ZD4,10136
|
|
67
|
+
pulumi_digitalocean/get_spaces_buckets.py,sha256=8rk_VtcEYLYX3mxnKsYS86pROHp8vOvg0ZlIBVMDB_E,7423
|
|
68
|
+
pulumi_digitalocean/get_spaces_key.py,sha256=J5rclj6Oi_ZKc1_dPunVUZt_-sWJfneZk0zP4cpBy8Q,5378
|
|
69
|
+
pulumi_digitalocean/get_ssh_key.py,sha256=yMbWnRd697Zarf8fhd_sLA1FZKvg2V0-GEu2b6xRB2o,5617
|
|
70
|
+
pulumi_digitalocean/get_ssh_keys.py,sha256=Z6JC0a9FRnY870Hqek4QNvOSPhO26xS6e0FOyQbzM9c,6902
|
|
71
|
+
pulumi_digitalocean/get_tag.py,sha256=5PfrquC6npffC7KxHTt3dD4fe95vRx-J5yEd7Y80rA0,8409
|
|
72
|
+
pulumi_digitalocean/get_tags.py,sha256=6SwyOf6z7rhbBs_hdlz0joP-p1xZZdplaXwUxfKo--A,5678
|
|
73
|
+
pulumi_digitalocean/get_volume.py,sha256=9liGkSsGd-jz9jjrhYQPFZnjTo0Y86DZTgan4HnWcTk,10375
|
|
74
|
+
pulumi_digitalocean/get_volume_snapshot.py,sha256=06hMblHirXc9PnB0Re3IWch-ky73C4lflSSLuC5w3II,12120
|
|
75
|
+
pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQw,8934
|
|
76
|
+
pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
|
|
77
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=YxT847azv-mpCxkCC6-UI2KuB6hz2RyKmWXMuCVq8ng,69154
|
|
78
|
+
pulumi_digitalocean/kubernetes_node_pool.py,sha256=MtFr_MCeF80TXvfndOjJuWpnK_kcm8FcSA_wAVWvmYw,39053
|
|
79
|
+
pulumi_digitalocean/load_balancer.py,sha256=Hwc8qOxgyMX5SZQVI6aYjwHIB0Nee5I6UuRnBssJQNc,84150
|
|
80
|
+
pulumi_digitalocean/monitor_alert.py,sha256=HTKmY0a2jB6_1GcG3pFXiA6-oteis1WOv-AlXG4BY7Q,38240
|
|
81
|
+
pulumi_digitalocean/outputs.py,sha256=YqOzbhye25k5mhZxkcSrq2yOT-d5lF65S7ESbzqz-YM,742903
|
|
82
|
+
pulumi_digitalocean/partner_attachment.py,sha256=p77CcrC393vOXkChTy4n_GEnNFproGhC5IFHQ9rs9ic,18698
|
|
83
|
+
pulumi_digitalocean/project.py,sha256=baXvxNL2Xgtxc7aDwp5LSPXKNgOooV8fUTzgdziul1c,25703
|
|
84
|
+
pulumi_digitalocean/project_resources.py,sha256=gdHcRZwrmdIubOwWW-WO15t61hew1GseUoQTbTtCuGo,10788
|
|
85
|
+
pulumi_digitalocean/provider.py,sha256=_PQ67VyHsZBEA6RYgCKtbrhbJ7283Omyisgx0MCqGNE,15313
|
|
86
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=ayB87pULhl59bd0OUwSo67HpDXi6Ujns5RRmR5aIH70,72
|
|
87
|
+
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
pulumi_digitalocean/reserved_ip.py,sha256=f8_U3CAICvWtfAGBokIjQeM3IMg6N8W8a_GrX5m7uJs,13353
|
|
89
|
+
pulumi_digitalocean/reserved_ip_assignment.py,sha256=yeZL_yfyEzLjXk9OOL-Cy62jRYgY8bhdCBqwI1CS7Hk,10708
|
|
90
|
+
pulumi_digitalocean/reserved_ipv6.py,sha256=3mFwb7BBo4iT7D4XUXu0SK4ACOujeas3cyb2qyGWxks,11118
|
|
91
|
+
pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=OpWp_ENg4RW9Swt3szlYTb5WBAiUKJ6nOTjTvK7ZY1c,9216
|
|
92
|
+
pulumi_digitalocean/spaces_bucket.py,sha256=vf4D0cou7kmD5pwSHj7LKlkxaWP7jbcxac2XhaYGfMA,31191
|
|
93
|
+
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=eJJRZUVXEgybYjwRLud8thFrro2wfxKhyc3jLMrmk5s,14022
|
|
94
|
+
pulumi_digitalocean/spaces_bucket_object.py,sha256=eKdrU3O2ybzQwHtAikigYYkDrrB7Ii8pGhY6BkApHvo,55186
|
|
95
|
+
pulumi_digitalocean/spaces_bucket_policy.py,sha256=1nEfwcem6XJNJTnTNIAiBYP0VIpeIvhXmifSuqVSFLc,12974
|
|
96
|
+
pulumi_digitalocean/spaces_key.py,sha256=k84E8Kcj0EXyAeMQ7J-7Fn86r4-rrlC1PdcFwdl0Rgs,14959
|
|
97
|
+
pulumi_digitalocean/ssh_key.py,sha256=Q_0VbBKQU4nkMg2OoP2qX6I_smXAXocLHugZoB2QSXs,11263
|
|
98
|
+
pulumi_digitalocean/tag.py,sha256=qPfyYHt0qnYn18HS-zoJNKENf0fkqqwokPvXphBDkK8,15197
|
|
99
|
+
pulumi_digitalocean/uptime_alert.py,sha256=RxntizTQ1u97zilnihUOPE050r4qF1IDlFBCf4aVmLE,21702
|
|
100
|
+
pulumi_digitalocean/uptime_check.py,sha256=Fu3ujCe88zGL6yNqQkuC7fKEZT8Oe7OtrlMnJda245A,15370
|
|
101
|
+
pulumi_digitalocean/volume.py,sha256=Z7S2NBgD_Q6qdWzJ8rN0wWvJDzf5D1KowYHJXk-B6Po,34784
|
|
102
|
+
pulumi_digitalocean/volume_attachment.py,sha256=fEGPhav9eyKo_rnG5FA9CPKDLDf5ho08hyj78k85_Aw,10284
|
|
103
|
+
pulumi_digitalocean/volume_snapshot.py,sha256=VMcGj7-y3jJfnQ3_ENJ1Z_QvfWi1Mq44-qU-1LdnwDY,16741
|
|
104
|
+
pulumi_digitalocean/vpc.py,sha256=ZF90ShEhDJ52I1BXOX07_s0oLrMJxYxpyOzOOB-4ovo,19876
|
|
105
|
+
pulumi_digitalocean/vpc_peering.py,sha256=GwgGCtgu0LlKNBY4sVdoBGDjG_elic4foNfYpof0i58,14824
|
|
106
|
+
pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
107
|
+
pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
|
|
108
|
+
pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
|
|
109
|
+
pulumi_digitalocean-4.44.0.dist-info/METADATA,sha256=D4qGW3iYD66kZqLgJ7-QguF2xJM3NwCljEezyCf2Lhk,3838
|
|
110
|
+
pulumi_digitalocean-4.44.0.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
111
|
+
pulumi_digitalocean-4.44.0.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
112
|
+
pulumi_digitalocean-4.44.0.dist-info/RECORD,,
|