This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 5d8be949ea6 Revert "Make Redshift system-test clusters non-public in
sql_to_s3/s3_to_sql (#69890)" (#70259)
5d8be949ea6 is described below
commit 5d8be949ea6669f37a332f61046af7137ec40c02
Author: Sean Ghaeli <[email protected]>
AuthorDate: Thu Jul 23 04:26:58 2026 -0700
Revert "Make Redshift system-test clusters non-public in
sql_to_s3/s3_to_sql (#69890)" (#70259)
The system-tests security group no longer allows 0.0.0.0/0 ingress, which
supersedes the private-endpoint mitigation. With a private endpoint the test
runner has no route to the cluster and both tests fail on connect; with the
restricted security group the public endpoint is only reachable from the runner
ranges.
This reverts commit 46ea26b769d838688ffa7620dfdbd2f00a3b7223.
---
providers/amazon/tests/system/amazon/aws/example_s3_to_sql.py | 1 -
providers/amazon/tests/system/amazon/aws/example_sql_to_s3.py | 1 -
2 files changed, 2 deletions(-)
diff --git a/providers/amazon/tests/system/amazon/aws/example_s3_to_sql.py
b/providers/amazon/tests/system/amazon/aws/example_s3_to_sql.py
index df15e1ba0fd..e53c5657e02 100644
--- a/providers/amazon/tests/system/amazon/aws/example_s3_to_sql.py
+++ b/providers/amazon/tests/system/amazon/aws/example_s3_to_sql.py
@@ -115,7 +115,6 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
vpc_security_group_ids=[security_group_id],
cluster_subnet_group_name=cluster_subnet_group_name,
- publicly_accessible=False,
cluster_type="single-node",
node_type="ra3.large",
master_username=DB_LOGIN,
diff --git a/providers/amazon/tests/system/amazon/aws/example_sql_to_s3.py
b/providers/amazon/tests/system/amazon/aws/example_sql_to_s3.py
index cffda6c3ba0..657f36be007 100644
--- a/providers/amazon/tests/system/amazon/aws/example_sql_to_s3.py
+++ b/providers/amazon/tests/system/amazon/aws/example_sql_to_s3.py
@@ -122,7 +122,6 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
vpc_security_group_ids=[security_group_id],
cluster_subnet_group_name=cluster_subnet_group_name,
- publicly_accessible=False,
cluster_type="single-node",
node_type="ra3.large",
master_username=DB_LOGIN,