Skip to content

Commit

Permalink
Resolve linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gazoakley committed Jul 16, 2020
1 parent 9a4a556 commit 0a8d5bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (

func TestAccAWSRoute53VpcAssociationAuthorization_basic(t *testing.T) {
var providers []*schema.Provider
var zone route53.HostedZone

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Expand All @@ -24,7 +23,7 @@ func TestAccAWSRoute53VpcAssociationAuthorization_basic(t *testing.T) {
{
Config: testAccRoute53VPCAssociationAuthorizationConfig(),
Check: resource.ComposeTestCheckFunc(
testAccCheckRoute53VPCAssociationAuthorizationExists("aws_route53_vpc_association_authorization.test", &zone),
testAccCheckRoute53VPCAssociationAuthorizationExists("aws_route53_vpc_association_authorization.test"),
),
},
},
Expand Down Expand Up @@ -65,7 +64,7 @@ func testAccCheckRoute53VPCAssociationAuthorizationDestroy(s *terraform.State) e
return nil
}

func testAccCheckRoute53VPCAssociationAuthorizationExists(n string, zone *route53.HostedZone) resource.TestCheckFunc {
func testAccCheckRoute53VPCAssociationAuthorizationExists(n string) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[n]
if !ok {
Expand Down
3 changes: 3 additions & 0 deletions website/aws.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2766,6 +2766,9 @@
<li>
<a href="/docs/providers/aws/r/route53_record.html">aws_route53_record</a>
</li>
<li>
<a href="/docs/providers/aws/r/route53_vpc_association_authorization.html">aws_route53_vpc_association_authorization</a>
</li>
<li>
<a href="/docs/providers/aws/r/route53_zone.html">aws_route53_zone</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
subcategory: "Route53"
layout: "aws"
page_title: "AWS: aws_route53_vpc_association_authorization"
sidebar_current: "aws_route53_vpc_association_authorization"
description: |-
Authorizes a VPC in a peer account to be associated with a local Route53 Hosted Zone
---
Expand All @@ -17,7 +17,7 @@ provider "aws" {
}
provider "aws" {
alias = "alternate"
alias = "alternate"
}
resource "aws_vpc" "example" {
Expand Down

0 comments on commit 0a8d5bd

Please sign in to comment.