Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Rename title of aws_route53_record with wildcard. #348

Merged
merged 1 commit into from
Jul 26, 2017
Merged

Rename title of aws_route53_record with wildcard. #348

merged 1 commit into from
Jul 26, 2017

Conversation

furhouse
Copy link
Contributor

@furhouse furhouse commented Jul 23, 2017

Normalize '-052' to 'wildcard'.

See #347

This renames the title of an aws_route53_record with a wildcard to a string which can be reused without having to modify the output of terraform r53r (--tfstate).

resource "aws_route53_record" "-052-example-net-CNAME" {
    zone_id = "XYZ"
    name    = "*.example.net"
    type    = "CNAME"
    records = ["example.net."]
    ttl     = "1800"
}

->

resource "aws_route53_record" "wildcard-example-net-CNAME" {
    zone_id = "XYZ"
    name    = "*.example.net"
    type    = "CNAME"
    records = ["example.net."]
    ttl     = "1800"
}

Normalize '-052' to 'wildcard'.
@coveralls
Copy link

coveralls commented Jul 23, 2017

Coverage Status

Coverage remained the same at 100.0% when pulling f472cca on furhouse:feature/route53_wildcard_record_name_fix into 8061079 on dtan4:master.

@dtan4
Copy link
Owner

dtan4 commented Jul 26, 2017

LGTM 👍 Thanks ❗️

@dtan4 dtan4 merged commit d0930d1 into dtan4:master Jul 26, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants