-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
tests/service/ec2: Add aws_ec2_client_vpn_network_association sweeper #14116
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -2,15 +2,99 @@ package aws | |
|
||
import ( | ||
"fmt" | ||
"log" | ||
"testing" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/ec2" | ||
"github.com/hashicorp/go-multierror" | ||
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest" | ||
"github.com/hashicorp/terraform-plugin-sdk/helper/resource" | ||
"github.com/hashicorp/terraform-plugin-sdk/terraform" | ||
) | ||
|
||
func init() { | ||
resource.AddTestSweepers("aws_ec2_client_vpn_network_association", &resource.Sweeper{ | ||
Name: "aws_ec2_client_vpn_network_association", | ||
F: testSweepEc2ClientVpnNetworkAssociations, | ||
}) | ||
} | ||
|
||
func testSweepEc2ClientVpnNetworkAssociations(region string) error { | ||
client, err := sharedClientForRegion(region) | ||
|
||
if err != nil { | ||
return fmt.Errorf("error getting client: %w", err) | ||
} | ||
|
||
conn := client.(*AWSClient).ec2conn | ||
input := &ec2.DescribeClientVpnEndpointsInput{} | ||
var sweeperErrs *multierror.Error | ||
|
||
err = conn.DescribeClientVpnEndpointsPages(input, func(page *ec2.DescribeClientVpnEndpointsOutput, lastPage bool) bool { | ||
if page == nil { | ||
return !lastPage | ||
} | ||
|
||
for _, clientVpnEndpoint := range page.ClientVpnEndpoints { | ||
if clientVpnEndpoint == nil { | ||
continue | ||
} | ||
|
||
endpointID := aws.StringValue(clientVpnEndpoint.ClientVpnEndpointId) | ||
input := &ec2.DescribeClientVpnTargetNetworksInput{ | ||
ClientVpnEndpointId: clientVpnEndpoint.ClientVpnEndpointId, | ||
} | ||
|
||
err := conn.DescribeClientVpnTargetNetworksPages(input, func(page *ec2.DescribeClientVpnTargetNetworksOutput, lastPage bool) bool { | ||
if page == nil { | ||
return !lastPage | ||
} | ||
|
||
for _, targetNetwork := range page.ClientVpnTargetNetworks { | ||
associationID := aws.StringValue(targetNetwork.AssociationId) | ||
|
||
log.Printf("[INFO] Deleting EC2 Client VPN Target Network: %s", associationID) | ||
r := resourceAwsEc2ClientVpnNetworkAssociation() | ||
d := r.Data(nil) | ||
d.SetId(associationID) | ||
d.Set("client_vpn_endpoint_id", endpointID) | ||
err := r.Delete(d, client) | ||
|
||
if err != nil { | ||
sweeperErr := fmt.Errorf("error deleting EC2 Client VPN Target Network (%s): %w", associationID, err) | ||
log.Printf("[ERROR] %s", sweeperErr) | ||
sweeperErrs = multierror.Append(sweeperErrs, sweeperErr) | ||
continue | ||
} | ||
} | ||
|
||
return !lastPage | ||
}) | ||
|
||
if err != nil { | ||
sweeperErr := fmt.Errorf("error describing EC2 Client VPN Target Networks for Endpoint (%s): %w", endpointID, err) | ||
log.Printf("[ERROR] %s", sweeperErr) | ||
sweeperErrs = multierror.Append(sweeperErrs, sweeperErr) | ||
continue | ||
} | ||
} | ||
|
||
return !lastPage | ||
}) | ||
|
||
if testSweepSkipSweepError(err) { | ||
log.Printf("[WARN] Skipping Client VPN Endpoint sweep for %s: %s", region, err) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. small change here to reflect the resource being sweeped: |
||
return sweeperErrs.ErrorOrNil() | ||
} | ||
|
||
if err != nil { | ||
return fmt.Errorf("error retrieving Client VPN Endpoints: %w", err) | ||
} | ||
|
||
return sweeperErrs.ErrorOrNil() | ||
} | ||
|
||
func testAccAwsEc2ClientVpnNetworkAssociation_basic(t *testing.T) { | ||
var assoc1 ec2.TargetNetwork | ||
rStr := acctest.RandString(5) | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
interesting use of resource !