Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AWS Route53 #1407

Open
kaykhan opened this issue May 15, 2024 · 0 comments
Open

Add AWS Route53 #1407

kaykhan opened this issue May 15, 2024 · 0 comments
Labels
enhancement New feature or request terratest

Comments

@kaykhan
Copy link

kaykhan commented May 15, 2024

Describe the solution you'd like

I want to get a route53 record to see if it was correctly created.

Describe alternatives you've considered

Additional context

Something like

func TestRoute53Record(t *testing.T) {
    t.Log("Verifying Route 53 DNS record")
    route53Record := aws.GetRoute53Record(t, hostedZoneID, recordName, awsRegion)
    require.NotNil(t, route53Record)
    require.Equal(t, recordName, *route53Record.Name)
    require.Equal(t, "A", *route53Record.Type)
}
@kaykhan kaykhan added the enhancement New feature or request label May 15, 2024
@ZachGoldberg ZachGoldberg added the terratest label May 20, 2024 — with Linear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request terratest
Projects
None yet
Development

No branches or pull requests

2 participants