pulumi-aws 7.15.0__py3-none-any.whl → 7.16.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.
- pulumi_aws/__init__.py +80 -0
- pulumi_aws/alb/listener.py +7 -7
- pulumi_aws/alb/target_group.py +7 -7
- pulumi_aws/alb/target_group_attachment.py +83 -0
- pulumi_aws/apigateway/domain_name.py +86 -7
- pulumi_aws/apigateway/get_domain_name.py +15 -1
- pulumi_aws/apigateway/integration.py +48 -8
- pulumi_aws/athena/_inputs.py +412 -5
- pulumi_aws/athena/outputs.py +342 -2
- pulumi_aws/backup/global_settings.py +15 -7
- pulumi_aws/bedrock/agentcore_memory_strategy.py +8 -0
- pulumi_aws/cleanrooms/collaboration.py +26 -6
- pulumi_aws/cloudfront/__init__.py +6 -0
- pulumi_aws/cloudfront/_inputs.py +3601 -478
- pulumi_aws/cloudfront/connection_function.py +658 -0
- pulumi_aws/cloudfront/connection_group.py +649 -0
- pulumi_aws/cloudfront/distribution.py +142 -0
- pulumi_aws/cloudfront/distribution_tenant.py +857 -0
- pulumi_aws/cloudfront/get_connection_group.py +249 -0
- pulumi_aws/cloudfront/get_distribution_tenant.py +279 -0
- pulumi_aws/cloudfront/multitenant_distribution.py +1181 -0
- pulumi_aws/cloudfront/outputs.py +3034 -376
- pulumi_aws/cloudwatch/log_subscription_filter.py +136 -42
- pulumi_aws/directconnect/gateway.py +78 -3
- pulumi_aws/directconnect/get_gateway.py +24 -4
- pulumi_aws/dlm/_inputs.py +3 -3
- pulumi_aws/dlm/outputs.py +2 -2
- pulumi_aws/dynamodb/__init__.py +1 -0
- pulumi_aws/dynamodb/_inputs.py +370 -0
- pulumi_aws/dynamodb/global_secondary_index.py +666 -0
- pulumi_aws/dynamodb/outputs.py +315 -0
- pulumi_aws/dynamodb/table.py +9 -1
- pulumi_aws/ec2/_inputs.py +44 -4
- pulumi_aws/ec2/get_vpc_endpoint.py +24 -4
- pulumi_aws/ec2/outputs.py +54 -4
- pulumi_aws/ecr/__init__.py +1 -0
- pulumi_aws/ecr/_inputs.py +58 -22
- pulumi_aws/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws/ecr/lifecycle_policy.py +152 -64
- pulumi_aws/ecr/outputs.py +37 -15
- pulumi_aws/ecr/pull_time_update_exclusion.py +363 -0
- pulumi_aws/ecr/repository_creation_template.py +7 -7
- pulumi_aws/ecs/_inputs.py +20 -0
- pulumi_aws/ecs/outputs.py +14 -0
- pulumi_aws/ecs/task_definition.py +28 -28
- pulumi_aws/elasticache/replication_group.py +7 -7
- pulumi_aws/fsx/ontap_file_system.py +14 -0
- pulumi_aws/glue/resource_policy.py +4 -4
- pulumi_aws/guardduty/_inputs.py +41 -1
- pulumi_aws/guardduty/outputs.py +27 -1
- pulumi_aws/iam/get_saml_provider.py +15 -1
- pulumi_aws/iam/outbound_web_identity_federation.py +0 -4
- pulumi_aws/iam/policy.py +47 -0
- pulumi_aws/iam/saml_provider.py +28 -0
- pulumi_aws/iam/virtual_mfa_device.py +66 -38
- pulumi_aws/imagebuilder/_inputs.py +87 -0
- pulumi_aws/imagebuilder/image.py +47 -0
- pulumi_aws/imagebuilder/image_pipeline.py +47 -0
- pulumi_aws/imagebuilder/outputs.py +87 -0
- pulumi_aws/kms/grant.py +18 -18
- pulumi_aws/lambda_/_inputs.py +24 -4
- pulumi_aws/lambda_/event_source_mapping.py +2 -0
- pulumi_aws/lambda_/function.py +28 -0
- pulumi_aws/lambda_/function_url.py +4 -0
- pulumi_aws/lambda_/get_function.py +15 -1
- pulumi_aws/lambda_/outputs.py +17 -3
- pulumi_aws/lambda_/permission.py +47 -0
- pulumi_aws/lb/listener.py +7 -7
- pulumi_aws/lb/target_group.py +7 -7
- pulumi_aws/lb/target_group_attachment.py +83 -0
- pulumi_aws/networkfirewall/_inputs.py +3 -3
- pulumi_aws/networkfirewall/outputs.py +2 -2
- pulumi_aws/networkfirewall/vpc_endpoint_association.py +2 -2
- pulumi_aws/networkmanager/vpc_attachment.py +7 -7
- pulumi_aws/opensearchingest/pipeline.py +47 -0
- pulumi_aws/organizations/__init__.py +1 -0
- pulumi_aws/organizations/tag.py +292 -0
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +21 -21
- pulumi_aws/rds/get_proxy.py +29 -1
- pulumi_aws/rds/proxy.py +94 -0
- pulumi_aws/rds/proxy_default_target_group.py +0 -76
- pulumi_aws/rds/proxy_target.py +0 -80
- pulumi_aws/redshift/__init__.py +1 -0
- pulumi_aws/redshift/_inputs.py +329 -0
- pulumi_aws/redshift/idc_application.py +687 -0
- pulumi_aws/redshift/outputs.py +265 -0
- pulumi_aws/route53/get_resolver_firewall_rules.py +9 -0
- pulumi_aws/route53/get_resolver_rule.py +19 -4
- pulumi_aws/route53/outputs.py +108 -1
- pulumi_aws/route53/resolver_firewall_rule.py +199 -32
- pulumi_aws/secretsmanager/__init__.py +1 -0
- pulumi_aws/secretsmanager/tag.py +333 -0
- pulumi_aws/sesv2/__init__.py +1 -0
- pulumi_aws/sesv2/tenant.py +418 -0
- pulumi_aws/sfn/activity.py +0 -4
- pulumi_aws/sfn/alias.py +0 -4
- pulumi_aws/transfer/_inputs.py +126 -0
- pulumi_aws/transfer/outputs.py +97 -0
- pulumi_aws/transfer/web_app.py +54 -7
- pulumi_aws/vpclattice/service_network_resource_association.py +47 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/RECORD +105 -93
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/top_level.txt +0 -0
pulumi_aws/lb/listener.py
CHANGED
|
@@ -61,7 +61,7 @@ class ListenerArgs:
|
|
|
61
61
|
:param pulumi.Input[_builtins.str] certificate_arn: ARN of the default SSL server certificate. Exactly one certificate is required if the protocol is HTTPS. For adding additional SSL certificates, see the `lb.ListenerCertificate` resource.
|
|
62
62
|
:param pulumi.Input['ListenerMutualAuthenticationArgs'] mutual_authentication: The mutual authentication configuration information. See below.
|
|
63
63
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
64
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
64
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
65
65
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
66
66
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
67
67
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -225,7 +225,7 @@ class ListenerArgs:
|
|
|
225
225
|
@pulumi.getter
|
|
226
226
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
227
227
|
"""
|
|
228
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
228
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "protocol")
|
|
231
231
|
|
|
@@ -558,7 +558,7 @@ class _ListenerState:
|
|
|
558
558
|
The following arguments are optional:
|
|
559
559
|
:param pulumi.Input['ListenerMutualAuthenticationArgs'] mutual_authentication: The mutual authentication configuration information. See below.
|
|
560
560
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
561
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
561
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
562
562
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
563
563
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
564
564
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -741,7 +741,7 @@ class _ListenerState:
|
|
|
741
741
|
@pulumi.getter
|
|
742
742
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
743
743
|
"""
|
|
744
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
744
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
745
745
|
"""
|
|
746
746
|
return pulumi.get(self, "protocol")
|
|
747
747
|
|
|
@@ -1372,7 +1372,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1372
1372
|
The following arguments are optional:
|
|
1373
1373
|
:param pulumi.Input[Union['ListenerMutualAuthenticationArgs', 'ListenerMutualAuthenticationArgsDict']] mutual_authentication: The mutual authentication configuration information. See below.
|
|
1374
1374
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
1375
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1375
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1376
1376
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1377
1377
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
1378
1378
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -1840,7 +1840,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1840
1840
|
The following arguments are optional:
|
|
1841
1841
|
:param pulumi.Input[Union['ListenerMutualAuthenticationArgs', 'ListenerMutualAuthenticationArgsDict']] mutual_authentication: The mutual authentication configuration information. See below.
|
|
1842
1842
|
:param pulumi.Input[_builtins.int] port: Port on which the load balancer is listening. Not valid for Gateway Load Balancers.
|
|
1843
|
-
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1843
|
+
:param pulumi.Input[_builtins.str] protocol: Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1844
1844
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1845
1845
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
1846
1846
|
:param pulumi.Input[_builtins.str] routing_http_request_x_amzn_mtls_clientcert_issuer_header_name: Enables you to modify the header name of the `X-Amzn-Mtls-Clientcert-Issuer` HTTP request header. Can only be set if protocol is `HTTPS` for Application Load Balancers.
|
|
@@ -1968,7 +1968,7 @@ class Listener(pulumi.CustomResource):
|
|
|
1968
1968
|
@pulumi.getter
|
|
1969
1969
|
def protocol(self) -> pulumi.Output[_builtins.str]:
|
|
1970
1970
|
"""
|
|
1971
|
-
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, and `
|
|
1971
|
+
Protocol for connections from clients to the load balancer. For Application Load Balancers, valid values are `HTTP` and `HTTPS`, with a default of `HTTP`. For Network Load Balancers, valid values are `TCP`, `TLS`, `UDP`, `TCP_UDP`, `QUIC`, and `TCP_QUIC`. Not valid to use `UDP` or `TCP_UDP` if dual-stack mode is enabled. Not valid to use `QUIC` or `TCP_QUIC` if security groups are configured or dual-stack mode is enabled. Not valid for Gateway Load Balancers.
|
|
1972
1972
|
"""
|
|
1973
1973
|
return pulumi.get(self, "protocol")
|
|
1974
1974
|
|
pulumi_aws/lb/target_group.py
CHANGED
|
@@ -61,7 +61,7 @@ class TargetGroupArgs:
|
|
|
61
61
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
62
62
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
63
63
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
64
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
64
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
65
65
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
66
66
|
Does not apply when `target_type` is `lambda`.
|
|
67
67
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -287,7 +287,7 @@ class TargetGroupArgs:
|
|
|
287
287
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
288
288
|
"""
|
|
289
289
|
Protocol to use for routing traffic to the targets.
|
|
290
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
290
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
291
291
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
292
292
|
Does not apply when `target_type` is `lambda`.
|
|
293
293
|
"""
|
|
@@ -502,7 +502,7 @@ class _TargetGroupState:
|
|
|
502
502
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
503
503
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
504
504
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
505
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
505
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
506
506
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
507
507
|
Does not apply when `target_type` is `lambda`.
|
|
508
508
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -773,7 +773,7 @@ class _TargetGroupState:
|
|
|
773
773
|
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
774
774
|
"""
|
|
775
775
|
Protocol to use for routing traffic to the targets.
|
|
776
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
776
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
777
777
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
778
778
|
Does not apply when `target_type` is `lambda`.
|
|
779
779
|
"""
|
|
@@ -1109,7 +1109,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1109
1109
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
1110
1110
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
1111
1111
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
1112
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1112
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1113
1113
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1114
1114
|
Does not apply when `target_type` is `lambda`.
|
|
1115
1115
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -1395,7 +1395,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1395
1395
|
:param pulumi.Input[_builtins.int] port: Port on which targets receive traffic, unless overridden when registering a specific target. Required when `target_type` is `instance`, `ip` or `alb`. Does not apply when `target_type` is `lambda`.
|
|
1396
1396
|
:param pulumi.Input[_builtins.str] preserve_client_ip: Whether client IP preservation is enabled. See [doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#client-ip-preservation) for more information.
|
|
1397
1397
|
:param pulumi.Input[_builtins.str] protocol: Protocol to use for routing traffic to the targets.
|
|
1398
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1398
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1399
1399
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1400
1400
|
Does not apply when `target_type` is `lambda`.
|
|
1401
1401
|
:param pulumi.Input[_builtins.str] protocol_version: Only applicable when `protocol` is `HTTP` or `HTTPS`. The protocol version. Specify `GRPC` to send requests to targets using gRPC. Specify `HTTP2` to send requests to targets using HTTP/2. The default is `HTTP1`, which sends requests to targets using HTTP/1.1
|
|
@@ -1582,7 +1582,7 @@ class TargetGroup(pulumi.CustomResource):
|
|
|
1582
1582
|
def protocol(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1583
1583
|
"""
|
|
1584
1584
|
Protocol to use for routing traffic to the targets.
|
|
1585
|
-
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, or `
|
|
1585
|
+
Should be one of `GENEVE`, `HTTP`, `HTTPS`, `TCP`, `TCP_UDP`, `TLS`, `UDP`, `QUIC`, or `TCP_QUIC`.
|
|
1586
1586
|
Required when `target_type` is `instance`, `ip`, or `alb`.
|
|
1587
1587
|
Does not apply when `target_type` is `lambda`.
|
|
1588
1588
|
"""
|
|
@@ -23,6 +23,7 @@ class TargetGroupAttachmentArgs:
|
|
|
23
23
|
target_id: pulumi.Input[_builtins.str],
|
|
24
24
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
25
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
26
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
27
|
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a TargetGroupAttachment resource.
|
|
@@ -32,6 +33,7 @@ class TargetGroupAttachmentArgs:
|
|
|
32
33
|
The following arguments are optional:
|
|
33
34
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
34
35
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
36
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
35
37
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
36
38
|
"""
|
|
37
39
|
pulumi.set(__self__, "target_group_arn", target_group_arn)
|
|
@@ -40,6 +42,8 @@ class TargetGroupAttachmentArgs:
|
|
|
40
42
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
41
43
|
if port is not None:
|
|
42
44
|
pulumi.set(__self__, "port", port)
|
|
45
|
+
if quic_server_id is not None:
|
|
46
|
+
pulumi.set(__self__, "quic_server_id", quic_server_id)
|
|
43
47
|
if region is not None:
|
|
44
48
|
pulumi.set(__self__, "region", region)
|
|
45
49
|
|
|
@@ -93,6 +97,18 @@ class TargetGroupAttachmentArgs:
|
|
|
93
97
|
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
94
98
|
pulumi.set(self, "port", value)
|
|
95
99
|
|
|
100
|
+
@_builtins.property
|
|
101
|
+
@pulumi.getter(name="quicServerId")
|
|
102
|
+
def quic_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
103
|
+
"""
|
|
104
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "quic_server_id")
|
|
107
|
+
|
|
108
|
+
@quic_server_id.setter
|
|
109
|
+
def quic_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
110
|
+
pulumi.set(self, "quic_server_id", value)
|
|
111
|
+
|
|
96
112
|
@_builtins.property
|
|
97
113
|
@pulumi.getter
|
|
98
114
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -111,6 +127,7 @@ class _TargetGroupAttachmentState:
|
|
|
111
127
|
def __init__(__self__, *,
|
|
112
128
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
113
129
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
130
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
114
131
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
115
132
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
116
133
|
target_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
@@ -118,6 +135,7 @@ class _TargetGroupAttachmentState:
|
|
|
118
135
|
Input properties used for looking up and filtering TargetGroupAttachment resources.
|
|
119
136
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
120
137
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
138
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
121
139
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
122
140
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
123
141
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -128,6 +146,8 @@ class _TargetGroupAttachmentState:
|
|
|
128
146
|
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
129
147
|
if port is not None:
|
|
130
148
|
pulumi.set(__self__, "port", port)
|
|
149
|
+
if quic_server_id is not None:
|
|
150
|
+
pulumi.set(__self__, "quic_server_id", quic_server_id)
|
|
131
151
|
if region is not None:
|
|
132
152
|
pulumi.set(__self__, "region", region)
|
|
133
153
|
if target_group_arn is not None:
|
|
@@ -159,6 +179,18 @@ class _TargetGroupAttachmentState:
|
|
|
159
179
|
def port(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
160
180
|
pulumi.set(self, "port", value)
|
|
161
181
|
|
|
182
|
+
@_builtins.property
|
|
183
|
+
@pulumi.getter(name="quicServerId")
|
|
184
|
+
def quic_server_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
185
|
+
"""
|
|
186
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "quic_server_id")
|
|
189
|
+
|
|
190
|
+
@quic_server_id.setter
|
|
191
|
+
def quic_server_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
192
|
+
pulumi.set(self, "quic_server_id", value)
|
|
193
|
+
|
|
162
194
|
@_builtins.property
|
|
163
195
|
@pulumi.getter
|
|
164
196
|
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -206,6 +238,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
206
238
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
207
239
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
208
240
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
241
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
209
242
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
210
243
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
211
244
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -253,6 +286,24 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
253
286
|
opts = pulumi.ResourceOptions(depends_on=[with_lb]))
|
|
254
287
|
```
|
|
255
288
|
|
|
289
|
+
### Target using QUIC
|
|
290
|
+
|
|
291
|
+
```python
|
|
292
|
+
import pulumi
|
|
293
|
+
import pulumi_aws as aws
|
|
294
|
+
|
|
295
|
+
test = aws.lb.TargetGroup("test",
|
|
296
|
+
name="test",
|
|
297
|
+
port=443,
|
|
298
|
+
protocol="QUIC")
|
|
299
|
+
test_instance = aws.ec2.Instance("test")
|
|
300
|
+
test_target_group_attachment = aws.lb.TargetGroupAttachment("test",
|
|
301
|
+
target_group_arn=test.arn,
|
|
302
|
+
target_id=test_instance.id,
|
|
303
|
+
port=443,
|
|
304
|
+
quic_server_id="0x1a2b3c4d5e6f7a8b")
|
|
305
|
+
```
|
|
306
|
+
|
|
256
307
|
## Import
|
|
257
308
|
|
|
258
309
|
You cannot import Target Group Attachments.
|
|
@@ -261,6 +312,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
261
312
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
262
313
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
263
314
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
315
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
264
316
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
265
317
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
266
318
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -316,6 +368,24 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
316
368
|
opts = pulumi.ResourceOptions(depends_on=[with_lb]))
|
|
317
369
|
```
|
|
318
370
|
|
|
371
|
+
### Target using QUIC
|
|
372
|
+
|
|
373
|
+
```python
|
|
374
|
+
import pulumi
|
|
375
|
+
import pulumi_aws as aws
|
|
376
|
+
|
|
377
|
+
test = aws.lb.TargetGroup("test",
|
|
378
|
+
name="test",
|
|
379
|
+
port=443,
|
|
380
|
+
protocol="QUIC")
|
|
381
|
+
test_instance = aws.ec2.Instance("test")
|
|
382
|
+
test_target_group_attachment = aws.lb.TargetGroupAttachment("test",
|
|
383
|
+
target_group_arn=test.arn,
|
|
384
|
+
target_id=test_instance.id,
|
|
385
|
+
port=443,
|
|
386
|
+
quic_server_id="0x1a2b3c4d5e6f7a8b")
|
|
387
|
+
```
|
|
388
|
+
|
|
319
389
|
## Import
|
|
320
390
|
|
|
321
391
|
You cannot import Target Group Attachments.
|
|
@@ -337,6 +407,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
337
407
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
338
408
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
339
409
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
410
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
340
411
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
341
412
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
342
413
|
target_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -351,6 +422,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
351
422
|
|
|
352
423
|
__props__.__dict__["availability_zone"] = availability_zone
|
|
353
424
|
__props__.__dict__["port"] = port
|
|
425
|
+
__props__.__dict__["quic_server_id"] = quic_server_id
|
|
354
426
|
__props__.__dict__["region"] = region
|
|
355
427
|
if target_group_arn is None and not opts.urn:
|
|
356
428
|
raise TypeError("Missing required property 'target_group_arn'")
|
|
@@ -372,6 +444,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
372
444
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
373
445
|
availability_zone: Optional[pulumi.Input[_builtins.str]] = None,
|
|
374
446
|
port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
447
|
+
quic_server_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
375
448
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
376
449
|
target_group_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
377
450
|
target_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'TargetGroupAttachment':
|
|
@@ -384,6 +457,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
384
457
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
458
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone where the IP address of the target is to be registered. If the private IP address is outside of the VPC scope, this value must be set to `all`.
|
|
386
459
|
:param pulumi.Input[_builtins.int] port: The port on which targets receive traffic.
|
|
460
|
+
:param pulumi.Input[_builtins.str] quic_server_id: Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
387
461
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
388
462
|
:param pulumi.Input[_builtins.str] target_group_arn: The ARN of the target group with which to register targets.
|
|
389
463
|
:param pulumi.Input[_builtins.str] target_id: The ID of the target. This is the Instance ID for an instance, or the container ID for an ECS container. If the target type is `ip`, specify an IP address. If the target type is `lambda`, specify the Lambda function ARN. If the target type is `alb`, specify the ALB ARN.
|
|
@@ -396,6 +470,7 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
396
470
|
|
|
397
471
|
__props__.__dict__["availability_zone"] = availability_zone
|
|
398
472
|
__props__.__dict__["port"] = port
|
|
473
|
+
__props__.__dict__["quic_server_id"] = quic_server_id
|
|
399
474
|
__props__.__dict__["region"] = region
|
|
400
475
|
__props__.__dict__["target_group_arn"] = target_group_arn
|
|
401
476
|
__props__.__dict__["target_id"] = target_id
|
|
@@ -417,6 +492,14 @@ class TargetGroupAttachment(pulumi.CustomResource):
|
|
|
417
492
|
"""
|
|
418
493
|
return pulumi.get(self, "port")
|
|
419
494
|
|
|
495
|
+
@_builtins.property
|
|
496
|
+
@pulumi.getter(name="quicServerId")
|
|
497
|
+
def quic_server_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
498
|
+
"""
|
|
499
|
+
Server ID for the targets, consisting of the 0x prefix followed by 16 hexadecimal characters. The value must be unique at the listener level. Required if `lb.TargetGroup` protocol is `QUIC` or `TCP_QUIC`. Not valid with other protocols. Forces replacement if modified.
|
|
500
|
+
"""
|
|
501
|
+
return pulumi.get(self, "quic_server_id")
|
|
502
|
+
|
|
420
503
|
@_builtins.property
|
|
421
504
|
@pulumi.getter
|
|
422
505
|
def region(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -500,7 +500,7 @@ if not MYPY:
|
|
|
500
500
|
"""
|
|
501
501
|
stateful_default_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
502
502
|
"""
|
|
503
|
-
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`.
|
|
503
|
+
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`. Value values: `aws:drop_strict`, `aws:drop_established`, `aws:drop_established_app_layer`, `aws:alert_strict`, `aws:alert_established, `aws:alert_established_app_layer`. For more information, see [Strict evaluation order](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html) in the AWS Network Firewall Developer Guide.
|
|
504
504
|
"""
|
|
505
505
|
stateful_engine_options: NotRequired[pulumi.Input['FirewallPolicyFirewallPolicyStatefulEngineOptionsArgsDict']]
|
|
506
506
|
"""
|
|
@@ -543,7 +543,7 @@ class FirewallPolicyFirewallPolicyArgs:
|
|
|
543
543
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] stateless_fragment_default_actions: Set of actions to take on a fragmented packet if it does not match any of the stateless rules in the policy. You must specify one of the standard actions including: `aws:drop`, `aws:pass`, or `aws:forward_to_sfe`.
|
|
544
544
|
In addition, you can specify custom actions that are compatible with your standard action choice. If you want non-matching packets to be forwarded for stateful inspection, specify `aws:forward_to_sfe`.
|
|
545
545
|
:param pulumi.Input['FirewallPolicyFirewallPolicyPolicyVariablesArgs'] policy_variables: . Contains variables that you can use to override default Suricata settings in your firewall policy. See Rule Variables for details.
|
|
546
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] stateful_default_actions: Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`.
|
|
546
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] stateful_default_actions: Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`. Value values: `aws:drop_strict`, `aws:drop_established`, `aws:drop_established_app_layer`, `aws:alert_strict`, `aws:alert_established, `aws:alert_established_app_layer`. For more information, see [Strict evaluation order](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html) in the AWS Network Firewall Developer Guide.
|
|
547
547
|
:param pulumi.Input['FirewallPolicyFirewallPolicyStatefulEngineOptionsArgs'] stateful_engine_options: A configuration block that defines options on how the policy handles stateful rules. See Stateful Engine Options below for details.
|
|
548
548
|
:param pulumi.Input[Sequence[pulumi.Input['FirewallPolicyFirewallPolicyStatefulRuleGroupReferenceArgs']]] stateful_rule_group_references: Set of configuration blocks containing references to the stateful rule groups that are used in the policy. See Stateful Rule Group Reference below for details.
|
|
549
549
|
:param pulumi.Input[Sequence[pulumi.Input['FirewallPolicyFirewallPolicyStatelessCustomActionArgs']]] stateless_custom_actions: Set of configuration blocks describing the custom action definitions that are available for use in the firewall policy's `stateless_default_actions`. See Stateless Custom Action below for details.
|
|
@@ -609,7 +609,7 @@ class FirewallPolicyFirewallPolicyArgs:
|
|
|
609
609
|
@pulumi.getter(name="statefulDefaultActions")
|
|
610
610
|
def stateful_default_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
611
611
|
"""
|
|
612
|
-
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`.
|
|
612
|
+
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`. Value values: `aws:drop_strict`, `aws:drop_established`, `aws:drop_established_app_layer`, `aws:alert_strict`, `aws:alert_established, `aws:alert_established_app_layer`. For more information, see [Strict evaluation order](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html) in the AWS Network Firewall Developer Guide.
|
|
613
613
|
"""
|
|
614
614
|
return pulumi.get(self, "stateful_default_actions")
|
|
615
615
|
|
|
@@ -476,7 +476,7 @@ class FirewallPolicyFirewallPolicy(dict):
|
|
|
476
476
|
:param Sequence[_builtins.str] stateless_fragment_default_actions: Set of actions to take on a fragmented packet if it does not match any of the stateless rules in the policy. You must specify one of the standard actions including: `aws:drop`, `aws:pass`, or `aws:forward_to_sfe`.
|
|
477
477
|
In addition, you can specify custom actions that are compatible with your standard action choice. If you want non-matching packets to be forwarded for stateful inspection, specify `aws:forward_to_sfe`.
|
|
478
478
|
:param 'FirewallPolicyFirewallPolicyPolicyVariablesArgs' policy_variables: . Contains variables that you can use to override default Suricata settings in your firewall policy. See Rule Variables for details.
|
|
479
|
-
:param Sequence[_builtins.str] stateful_default_actions: Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`.
|
|
479
|
+
:param Sequence[_builtins.str] stateful_default_actions: Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`. Value values: `aws:drop_strict`, `aws:drop_established`, `aws:drop_established_app_layer`, `aws:alert_strict`, `aws:alert_established, `aws:alert_established_app_layer`. For more information, see [Strict evaluation order](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html) in the AWS Network Firewall Developer Guide.
|
|
480
480
|
:param 'FirewallPolicyFirewallPolicyStatefulEngineOptionsArgs' stateful_engine_options: A configuration block that defines options on how the policy handles stateful rules. See Stateful Engine Options below for details.
|
|
481
481
|
:param Sequence['FirewallPolicyFirewallPolicyStatefulRuleGroupReferenceArgs'] stateful_rule_group_references: Set of configuration blocks containing references to the stateful rule groups that are used in the policy. See Stateful Rule Group Reference below for details.
|
|
482
482
|
:param Sequence['FirewallPolicyFirewallPolicyStatelessCustomActionArgs'] stateless_custom_actions: Set of configuration blocks describing the custom action definitions that are available for use in the firewall policy's `stateless_default_actions`. See Stateless Custom Action below for details.
|
|
@@ -530,7 +530,7 @@ class FirewallPolicyFirewallPolicy(dict):
|
|
|
530
530
|
@pulumi.getter(name="statefulDefaultActions")
|
|
531
531
|
def stateful_default_actions(self) -> Optional[Sequence[_builtins.str]]:
|
|
532
532
|
"""
|
|
533
|
-
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`.
|
|
533
|
+
Set of actions to take on a packet if it does not match any stateful rules in the policy. This can only be specified if the policy has a `stateful_engine_options` block with a `rule_order` value of `STRICT_ORDER`. Value values: `aws:drop_strict`, `aws:drop_established`, `aws:drop_established_app_layer`, `aws:alert_strict`, `aws:alert_established, `aws:alert_established_app_layer`. For more information, see [Strict evaluation order](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html) in the AWS Network Firewall Developer Guide.
|
|
534
534
|
"""
|
|
535
535
|
return pulumi.get(self, "stateful_default_actions")
|
|
536
536
|
|
|
@@ -343,7 +343,7 @@ class VpcEndpointAssociation(pulumi.CustomResource):
|
|
|
343
343
|
firewall_arn=example_aws_networkfirewall_firewall["arn"],
|
|
344
344
|
vpc_id=example_aws_vpc["id"],
|
|
345
345
|
subnet_mapping={
|
|
346
|
-
"subnet_id":
|
|
346
|
+
"subnet_id": example_aws_subnet["id"],
|
|
347
347
|
},
|
|
348
348
|
tags={
|
|
349
349
|
"Name": "example endpoint",
|
|
@@ -390,7 +390,7 @@ class VpcEndpointAssociation(pulumi.CustomResource):
|
|
|
390
390
|
firewall_arn=example_aws_networkfirewall_firewall["arn"],
|
|
391
391
|
vpc_id=example_aws_vpc["id"],
|
|
392
392
|
subnet_mapping={
|
|
393
|
-
"subnet_id":
|
|
393
|
+
"subnet_id": example_aws_subnet["id"],
|
|
394
394
|
},
|
|
395
395
|
tags={
|
|
396
396
|
"Name": "example endpoint",
|
|
@@ -35,7 +35,7 @@ class VpcAttachmentArgs:
|
|
|
35
35
|
|
|
36
36
|
The following arguments are optional:
|
|
37
37
|
:param pulumi.Input['VpcAttachmentOptionsArgs'] options: Options for the VPC attachment. See below.
|
|
38
|
-
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
38
|
+
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
39
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
40
40
|
"""
|
|
41
41
|
pulumi.set(__self__, "core_network_id", core_network_id)
|
|
@@ -102,7 +102,7 @@ class VpcAttachmentArgs:
|
|
|
102
102
|
@pulumi.getter(name="routingPolicyLabel")
|
|
103
103
|
def routing_policy_label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
104
104
|
"""
|
|
105
|
-
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
105
|
+
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
106
106
|
"""
|
|
107
107
|
return pulumi.get(self, "routing_policy_label")
|
|
108
108
|
|
|
@@ -153,7 +153,7 @@ class _VpcAttachmentState:
|
|
|
153
153
|
:param pulumi.Input['VpcAttachmentOptionsArgs'] options: Options for the VPC attachment. See below.
|
|
154
154
|
:param pulumi.Input[_builtins.str] owner_account_id: ID of the attachment account owner.
|
|
155
155
|
:param pulumi.Input[_builtins.str] resource_arn: Attachment resource ARN.
|
|
156
|
-
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
156
|
+
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
157
157
|
:param pulumi.Input[_builtins.str] segment_name: Name of the segment attachment.
|
|
158
158
|
:param pulumi.Input[_builtins.str] state: State of the attachment.
|
|
159
159
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_arns: Subnet ARNs of the VPC attachment.
|
|
@@ -308,7 +308,7 @@ class _VpcAttachmentState:
|
|
|
308
308
|
@pulumi.getter(name="routingPolicyLabel")
|
|
309
309
|
def routing_policy_label(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
310
310
|
"""
|
|
311
|
-
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
311
|
+
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
312
312
|
"""
|
|
313
313
|
return pulumi.get(self, "routing_policy_label")
|
|
314
314
|
|
|
@@ -451,7 +451,7 @@ class VpcAttachment(pulumi.CustomResource):
|
|
|
451
451
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
452
452
|
:param pulumi.Input[_builtins.str] core_network_id: ID of a core network for the VPC attachment.
|
|
453
453
|
:param pulumi.Input[Union['VpcAttachmentOptionsArgs', 'VpcAttachmentOptionsArgsDict']] options: Options for the VPC attachment. See below.
|
|
454
|
-
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
454
|
+
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
455
455
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_arns: Subnet ARNs of the VPC attachment.
|
|
456
456
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value tags for the attachment. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
457
457
|
:param pulumi.Input[_builtins.str] vpc_arn: ARN of the VPC.
|
|
@@ -601,7 +601,7 @@ class VpcAttachment(pulumi.CustomResource):
|
|
|
601
601
|
:param pulumi.Input[Union['VpcAttachmentOptionsArgs', 'VpcAttachmentOptionsArgsDict']] options: Options for the VPC attachment. See below.
|
|
602
602
|
:param pulumi.Input[_builtins.str] owner_account_id: ID of the attachment account owner.
|
|
603
603
|
:param pulumi.Input[_builtins.str] resource_arn: Attachment resource ARN.
|
|
604
|
-
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
604
|
+
:param pulumi.Input[_builtins.str] routing_policy_label: The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
605
605
|
:param pulumi.Input[_builtins.str] segment_name: Name of the segment attachment.
|
|
606
606
|
:param pulumi.Input[_builtins.str] state: State of the attachment.
|
|
607
607
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_arns: Subnet ARNs of the VPC attachment.
|
|
@@ -709,7 +709,7 @@ class VpcAttachment(pulumi.CustomResource):
|
|
|
709
709
|
@pulumi.getter(name="routingPolicyLabel")
|
|
710
710
|
def routing_policy_label(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
711
711
|
"""
|
|
712
|
-
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
712
|
+
The routing policy label to apply to the VPC attachment for traffic routing decisions. Maximum length of 256 characters.
|
|
713
713
|
"""
|
|
714
714
|
return pulumi.get(self, "routing_policy_label")
|
|
715
715
|
|