-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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 namevaluesfilters package for resource filtering code #13313
Conversation
fea4087
to
9d4c114
Compare
Removed WIP. |
Rebased and removed merge conflicts. $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSAutoscalingGroups_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSAutoscalingGroups_ -timeout 120m
=== RUN TestAccAWSAutoscalingGroups_basic
=== PAUSE TestAccAWSAutoscalingGroups_basic
=== CONT TestAccAWSAutoscalingGroups_basic
--- PASS: TestAccAWSAutoscalingGroups_basic (94.05s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 94.096s
$ make testacc TEST=./aws/ TESTARGS='-run=TestAccDataSourceAwsVpc_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccDataSourceAwsVpc_ -timeout 120m
=== RUN TestAccDataSourceAwsVpc_basic
=== PAUSE TestAccDataSourceAwsVpc_basic
=== RUN TestAccDataSourceAwsVpc_ipv6Associated
=== PAUSE TestAccDataSourceAwsVpc_ipv6Associated
=== RUN TestAccDataSourceAwsVpc_multipleCidr
=== PAUSE TestAccDataSourceAwsVpc_multipleCidr
=== CONT TestAccDataSourceAwsVpc_basic
=== CONT TestAccDataSourceAwsVpc_multipleCidr
=== CONT TestAccDataSourceAwsVpc_ipv6Associated
--- PASS: TestAccDataSourceAwsVpc_basic (27.71s)
--- PASS: TestAccDataSourceAwsVpc_ipv6Associated (27.93s)
--- PASS: TestAccDataSourceAwsVpc_multipleCidr (49.46s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 49.496s |
de8eb6e
to
2ac3fc0
Compare
db9f5f2
to
9ade113
Compare
Rebased and removed merge conflicts. $ make testacc TEST=./aws/ TESTARGS='-run=TestAccDataSourceAwsVpc_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccDataSourceAwsVpc_ -timeout 120m
=== RUN TestAccDataSourceAwsVpc_basic
=== PAUSE TestAccDataSourceAwsVpc_basic
=== RUN TestAccDataSourceAwsVpc_ipv6Associated
=== PAUSE TestAccDataSourceAwsVpc_ipv6Associated
=== RUN TestAccDataSourceAwsVpc_multipleCidr
=== PAUSE TestAccDataSourceAwsVpc_multipleCidr
=== CONT TestAccDataSourceAwsVpc_basic
=== CONT TestAccDataSourceAwsVpc_multipleCidr
=== CONT TestAccDataSourceAwsVpc_ipv6Associated
--- PASS: TestAccDataSourceAwsVpc_basic (29.13s)
--- PASS: TestAccDataSourceAwsVpc_ipv6Associated (29.44s)
--- PASS: TestAccDataSourceAwsVpc_multipleCidr (52.13s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 52.183s
$ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSAutoscalingGroups_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSAutoscalingGroups_ -timeout 120m
=== RUN TestAccAWSAutoscalingGroups_basic
=== PAUSE TestAccAWSAutoscalingGroups_basic
=== CONT TestAccAWSAutoscalingGroups_basic
--- PASS: TestAccAWSAutoscalingGroups_basic (66.92s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 66.972s
$ TEST=./aws SWEEP=us-west-2,us-east-1 SWEEPARGS=-sweep-run=aws_db_cluster_snapshot make sweep
WARNING: This will destroy infrastructure. Use only in development accounts.
go test ./aws -v -sweep=us-west-2,us-east-1 -sweep-run=aws_db_cluster_snapshot -timeout 60m
2020/10/24 17:18:59 [DEBUG] Running Sweepers for region (us-west-2):
2020/10/24 17:18:59 [DEBUG] Running Sweeper (aws_db_cluster_snapshot) in region (us-west-2)
2020/10/24 17:18:59 [INFO] AWS Auth provider used: "EnvProvider"
2020/10/24 17:18:59 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020/10/24 17:18:59 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020/10/24 17:19:00 Sweeper Tests ran successfully:
- aws_db_cluster_snapshot
2020/10/24 17:19:00 [DEBUG] Running Sweepers for region (us-east-1):
2020/10/24 17:19:00 [DEBUG] Running Sweeper (aws_db_cluster_snapshot) in region (us-east-1)
2020/10/24 17:19:00 [INFO] AWS Auth provider used: "EnvProvider"
2020/10/24 17:19:00 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020/10/24 17:19:00 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020/10/24 17:19:01 Sweeper Tests ran successfully:
- aws_db_cluster_snapshot
ok github.com/terraform-providers/terraform-provider-aws/aws 1.803s |
9ade113
to
5277c9c
Compare
Acceptance test output: $ make testacc TEST=./aws/ TESTARGS='-run=TestAccDataSourceAwsVpc_' ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./aws/ -v -count 1 -parallel 2 -run=TestAccDataSourceAwsVpc_ -timeout 120m === RUN TestAccDataSourceAwsVpc_basic === PAUSE TestAccDataSourceAwsVpc_basic === RUN TestAccDataSourceAwsVpc_ipv6Associated === PAUSE TestAccDataSourceAwsVpc_ipv6Associated === RUN TestAccDataSourceAwsVpc_multipleCidr === PAUSE TestAccDataSourceAwsVpc_multipleCidr === CONT TestAccDataSourceAwsVpc_basic === CONT TestAccDataSourceAwsVpc_multipleCidr --- PASS: TestAccDataSourceAwsVpc_basic (40.39s) === CONT TestAccDataSourceAwsVpc_ipv6Associated --- PASS: TestAccDataSourceAwsVpc_multipleCidr (64.11s) --- PASS: TestAccDataSourceAwsVpc_ipv6Associated (40.41s) PASS ok github.com/terraform-providers/terraform-provider-aws/aws 80.853s
Acceptance test output: $ make testacc TEST=./aws/ TESTARGS='-run=TestAccDataSourceAwsVpc_' ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccDataSourceAwsVpc_ -timeout 120m === RUN TestAccDataSourceAwsVpc_basic === PAUSE TestAccDataSourceAwsVpc_basic === RUN TestAccDataSourceAwsVpc_ipv6Associated === PAUSE TestAccDataSourceAwsVpc_ipv6Associated === RUN TestAccDataSourceAwsVpc_multipleCidr === PAUSE TestAccDataSourceAwsVpc_multipleCidr === CONT TestAccDataSourceAwsVpc_basic === CONT TestAccDataSourceAwsVpc_multipleCidr === CONT TestAccDataSourceAwsVpc_ipv6Associated --- PASS: TestAccDataSourceAwsVpc_basic (29.13s) --- PASS: TestAccDataSourceAwsVpc_ipv6Associated (29.44s) --- PASS: TestAccDataSourceAwsVpc_multipleCidr (52.13s) PASS ok github.com/terraform-providers/terraform-provider-aws/aws 52.183s $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSAutoscalingGroups_' ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSAutoscalingGroups_ -timeout 120m === RUN TestAccAWSAutoscalingGroups_basic === PAUSE TestAccAWSAutoscalingGroups_basic === CONT TestAccAWSAutoscalingGroups_basic --- PASS: TestAccAWSAutoscalingGroups_basic (66.92s) PASS ok github.com/terraform-providers/terraform-provider-aws/aws 66.972s $ TEST=./aws SWEEP=us-west-2,us-east-1 SWEEPARGS=-sweep-run=aws_db_cluster_snapshot make sweep WARNING: This will destroy infrastructure. Use only in development accounts. go test ./aws -v -sweep=us-west-2,us-east-1 -sweep-run=aws_db_cluster_snapshot -timeout 60m 2020/10/24 17:18:59 [DEBUG] Running Sweepers for region (us-west-2): 2020/10/24 17:18:59 [DEBUG] Running Sweeper (aws_db_cluster_snapshot) in region (us-west-2) 2020/10/24 17:18:59 [INFO] AWS Auth provider used: "EnvProvider" 2020/10/24 17:18:59 [DEBUG] Trying to get account information via sts:GetCallerIdentity 2020/10/24 17:18:59 [DEBUG] Trying to get account information via sts:GetCallerIdentity 2020/10/24 17:19:00 Sweeper Tests ran successfully: - aws_db_cluster_snapshot 2020/10/24 17:19:00 [DEBUG] Running Sweepers for region (us-east-1): 2020/10/24 17:19:00 [DEBUG] Running Sweeper (aws_db_cluster_snapshot) in region (us-east-1) 2020/10/24 17:19:00 [INFO] AWS Auth provider used: "EnvProvider" 2020/10/24 17:19:00 [DEBUG] Trying to get account information via sts:GetCallerIdentity 2020/10/24 17:19:00 [DEBUG] Trying to get account information via sts:GetCallerIdentity 2020/10/24 17:19:01 Sweeper Tests ran successfully: - aws_db_cluster_snapshot ok github.com/terraform-providers/terraform-provider-aws/aws 1.803s
… for multiple AWS services.
This functionality has been released in v3.56.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Closes #13304.
Release note for CHANGELOG:
Output from acceptance testing: