presslabs / zinc

Route 53 zone manager.
https://www.presslabs.com/code/zinc/
Other
42 stars 2 forks source link

Incorrect values are shown for ALIAS target of S3 or ELB #159

Closed calind closed 7 years ago

calind commented 7 years ago

Currently the S3 website ALIAS target reads:

{
    "name": "s3",
    "type": "A",
    "values": [
        "ALIAS s3-website-us-east-1.amazonaws.com..calindon.me."
    ],
    "dirty": false,
    "id": "Zbg29pxAMNbwdBZ1Z39mLyppVMq4Oz",
    "url": "http://127.0.0.1:8000/zones/3/records/Zbg29pxAMNbwdBZ1Z39mLyppVMq4Oz",
    "managed": true
}

It should read

{
    "name": "s3",
    "type": "A",
    "values": [
        "ALIAS s3-website-us-east-1.amazonaws.com."
    ],
    "dirty": false,
    "id": "Zbg29pxAMNbwdBZ1Z39mLyppVMq4Oz",
    "url": "http://127.0.0.1:8000/zones/3/records/Zbg29pxAMNbwdBZ1Z39mLyppVMq4Oz",
    "managed": true
}

My take is that it would be fixed with #160