You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
When using the "private" mode, the check will fail as the S3 VPC Interface Endpoint will include DnsEntries that includes a wildcard.
In the get_ip_address function, the DnsEntries is the first in the list which might be something like *.vpce-xxxxxxxxx-xxxxxxxxx.s3.eu-west-3.vpce.amazonaws.com.
This will fail the call to hostname = endpoint[0]['DnsEntries'][0]['DnsName'].
All other VPC endpoints used by MWAA don't include a "*" in their DNS Names.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When using the "private" mode, the check will fail as the S3 VPC Interface Endpoint will include DnsEntries that includes a wildcard.
In the
get_ip_address
function, theDnsEntries
is the first in the list which might be something like*.vpce-xxxxxxxxx-xxxxxxxxx.s3.eu-west-3.vpce.amazonaws.com
.This will fail the call to
hostname = endpoint[0]['DnsEntries'][0]['DnsName']
.All other VPC endpoints used by MWAA don't include a "*" in their DNS Names.
The text was updated successfully, but these errors were encountered: