-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle eventually-consistent PrivateDnsName
- Loading branch information
1 parent
f74b8e6
commit f0dd28b
Showing
5 changed files
with
223 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o pipefail | ||
set -o nounset | ||
|
||
# Retrieves the PrivateDnsName from EC2 for this instance, waiting until | ||
# it is available if necessary (due to eventual consistency). | ||
|
||
function log { | ||
echo >&2 "$(date '+%Y-%m-%dT%H:%M:%S%z')" "[private-dns-name]" "$@" | ||
} | ||
|
||
INSTANCE_ID=$(imds /latest/meta-data/instance-id) | ||
|
||
# the AWS CLI currently constructs the wrong endpoint URL on localzones (the availability zone group will be used instead of the parent region) | ||
# more info: https://github.com/aws/aws-cli/issues/7043 | ||
REGION=$(imds /latest/meta-data/placement/region) | ||
|
||
# wait for ~120 seconds (depending on jitter) | ||
MAX_ATTEMPTS=20 | ||
ATTEMPT_INTERVAL=6 | ||
|
||
ATTEMPT=0 | ||
while true; do | ||
PRIVATE_DNS_NAME=$(aws ec2 describe-instances --region $REGION --instance-ids $INSTANCE_ID || echo '{}' | jq -r '.Reservations[].Instances[].PrivateDnsName') | ||
if [ ! "${PRIVATE_DNS_NAME}" = "" ] || [ ${ATTEMPT} -gteq ${MAX_ATTEMPTS} ]; then | ||
break | ||
fi | ||
ATTEMPT=$((ATTEMPT + 1)) | ||
JITTER=$(seq -1 1 | shuf -n1) | ||
DELAY=$((ATTEMPT_INTERVAL + JITTER)) | ||
log "WARN: PrivateDnsName is not available, waiting for ${DELAY} seconds..." | ||
sleep ${DELAY} | ||
done | ||
|
||
if [ "${PRIVATE_DNS_NAME}" = "" ]; then | ||
log "ERROR: failed to retrieve PrivateDnsName after ${ATTEMPT} attempts!" | ||
exit 1 | ||
else | ||
log "INFO: retrieved PrivateDnsName: ${PRIVATE_DNS_NAME}" | ||
echo "${PRIVATE_DNS_NAME}" | ||
exit 0 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o nounset | ||
set -o errexit | ||
set -o pipefail | ||
|
||
echo "--> Should fetch PrivateDnsName correctly" | ||
EXPECTED_PRIVATE_DNS_NAME="ip-10-0-0-157.us-east-2.compute.internal" | ||
PRIVATE_DNS_NAME=$(private-dns-name) | ||
if [ ! "$PRIVATE_DNS_NAME" = "$EXPECTED_PRIVATE_DNS_NAME" ]; then | ||
echo "❌ Test Failed: expected private-dns-name=$EXPECTED_PRIVATE_DNS_NAME but got '${PRIVATE_DNS_NAME}'" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
{ | ||
"Reservations": [ | ||
{ | ||
"Groups": [], | ||
"Instances": [ | ||
{ | ||
"AmiLaunchIndex": 0, | ||
"ImageId": "ami-0abcdef1234567890", | ||
"InstanceId": "i-1234567890abcdef0", | ||
"InstanceType": "t3.nano", | ||
"KeyName": "my-key-pair", | ||
"LaunchTime": "2022-11-15T10:48:59+00:00", | ||
"Monitoring": { | ||
"State": "disabled" | ||
}, | ||
"Placement": { | ||
"AvailabilityZone": "us-east-2a", | ||
"GroupName": "", | ||
"Tenancy": "default" | ||
}, | ||
"PrivateDnsName": "ip-10-0-0-157.us-east-2.compute.internal", | ||
"PrivateIpAddress": "10-0-0-157", | ||
"ProductCodes": [], | ||
"PublicDnsName": "ec2-34-253-223-13.us-east-2.compute.amazonaws.com", | ||
"PublicIpAddress": "34.253.223.13", | ||
"State": { | ||
"Code": 16, | ||
"Name": "running" | ||
}, | ||
"StateTransitionReason": "", | ||
"SubnetId": "subnet-04a636d18e83cfacb", | ||
"VpcId": "vpc-1234567890abcdef0", | ||
"Architecture": "x86_64", | ||
"BlockDeviceMappings": [ | ||
{ | ||
"DeviceName": "/dev/xvda", | ||
"Ebs": { | ||
"AttachTime": "2022-11-15T10:49:00+00:00", | ||
"DeleteOnTermination": true, | ||
"Status": "attached", | ||
"VolumeId": "vol-02e6ccdca7de29cf2" | ||
} | ||
} | ||
], | ||
"ClientToken": "1234abcd-1234-abcd-1234-d46a8903e9bc", | ||
"EbsOptimized": true, | ||
"EnaSupport": true, | ||
"Hypervisor": "xen", | ||
"IamInstanceProfile": { | ||
"Arn": "arn:aws:iam::111111111111:instance-profile/AmazonSSMRoleForInstancesQuickSetup", | ||
"Id": "111111111111111111111" | ||
}, | ||
"NetworkInterfaces": [ | ||
{ | ||
"Association": { | ||
"IpOwnerId": "amazon", | ||
"PublicDnsName": "ec2-34-253-223-13.us-east-2.compute.amazonaws.com", | ||
"PublicIp": "34.253.223.13" | ||
}, | ||
"Attachment": { | ||
"AttachTime": "2022-11-15T10:48:59+00:00", | ||
"AttachmentId": "eni-attach-1234567890abcdefg", | ||
"DeleteOnTermination": true, | ||
"DeviceIndex": 0, | ||
"Status": "attached", | ||
"NetworkCardIndex": 0 | ||
}, | ||
"Description": "", | ||
"Groups": [ | ||
{ | ||
"GroupName": "launch-wizard-146", | ||
"GroupId": "sg-1234567890abcdefg" | ||
} | ||
], | ||
"Ipv6Addresses": [], | ||
"MacAddress": "00:11:22:33:44:55", | ||
"NetworkInterfaceId": "eni-1234567890abcdefg", | ||
"OwnerId": "104024344472", | ||
"PrivateDnsName": "ip-10-0-0-157.us-east-2.compute.internal", | ||
"PrivateIpAddress": "10-0-0-157", | ||
"PrivateIpAddresses": [ | ||
{ | ||
"Association": { | ||
"IpOwnerId": "amazon", | ||
"PublicDnsName": "ec2-34-253-223-13.us-east-2.compute.amazonaws.com", | ||
"PublicIp": "34.253.223.13" | ||
}, | ||
"Primary": true, | ||
"PrivateDnsName": "ip-10-0-0-157.us-east-2.compute.internal", | ||
"PrivateIpAddress": "10-0-0-157" | ||
} | ||
], | ||
"SourceDestCheck": true, | ||
"Status": "in-use", | ||
"SubnetId": "subnet-1234567890abcdefg", | ||
"VpcId": "vpc-1234567890abcdefg", | ||
"InterfaceType": "interface" | ||
} | ||
], | ||
"RootDeviceName": "/dev/xvda", | ||
"RootDeviceType": "ebs", | ||
"SecurityGroups": [ | ||
{ | ||
"GroupName": "launch-wizard-146", | ||
"GroupId": "sg-1234567890abcdefg" | ||
} | ||
], | ||
"SourceDestCheck": true, | ||
"Tags": [ | ||
{ | ||
"Key": "Name", | ||
"Value": "my-instance" | ||
} | ||
], | ||
"VirtualizationType": "hvm", | ||
"CpuOptions": { | ||
"CoreCount": 1, | ||
"ThreadsPerCore": 2 | ||
}, | ||
"CapacityReservationSpecification": { | ||
"CapacityReservationPreference": "open" | ||
}, | ||
"HibernationOptions": { | ||
"Configured": false | ||
}, | ||
"MetadataOptions": { | ||
"State": "applied", | ||
"HttpTokens": "optional", | ||
"HttpPutResponseHopLimit": 1, | ||
"HttpEndpoint": "enabled", | ||
"HttpProtocolIpv6": "disabled", | ||
"InstanceMetadataTags": "enabled" | ||
}, | ||
"EnclaveOptions": { | ||
"Enabled": false | ||
}, | ||
"PlatformDetails": "Linux/UNIX", | ||
"UsageOperation": "RunInstances", | ||
"UsageOperationUpdateTime": "2022-11-15T10:48:59+00:00", | ||
"PrivateDnsNameOptions": { | ||
"HostnameType": "ip-name", | ||
"EnableResourceNameDnsARecord": true, | ||
"EnableResourceNameDnsAAAARecord": false | ||
}, | ||
"MaintenanceOptions": { | ||
"AutoRecovery": "default" | ||
} | ||
} | ||
], | ||
"OwnerId": "111111111111", | ||
"ReservationId": "r-1234567890abcdefg" | ||
} | ||
] | ||
} |