-
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
Updates Terraform syntax for data source acceptance tests #14837
Conversation
Closes #14561 (will link issue in a sec) |
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.
Looks great 🚀
Output from acceptance testing:
--- PASS: TestAccAWSAcmCertificateDataSource_KeyTypes (29.05s)
--- PASS: TestAccAWSInstanceDataSource_AzUserData (113.38s)
--- PASS: TestAccAWSInstanceDataSource_basic (102.48s)
--- PASS: TestAccAWSInstanceDataSource_blockDevices (79.84s)
--- PASS: TestAccAWSInstanceDataSource_creditSpecification (84.89s)
--- PASS: TestAccAWSInstanceDataSource_EbsBlockDevice_KmsKeyId (80.18s)
--- PASS: TestAccAWSInstanceDataSource_getPasswordData_falseToTrue (217.91s)
--- PASS: TestAccAWSInstanceDataSource_getPasswordData_trueToFalse (198.77s)
--- PASS: TestAccAWSInstanceDataSource_GetUserData (122.75s)
--- PASS: TestAccAWSInstanceDataSource_GetUserData_NoUserData (122.91s)
--- PASS: TestAccAWSInstanceDataSource_gp2IopsDevice (99.48s)
--- PASS: TestAccAWSInstanceDataSource_keyPair (103.10s)
--- PASS: TestAccAWSInstanceDataSource_metadataOptions (77.89s)
--- PASS: TestAccAWSInstanceDataSource_PlacementGroup (76.44s)
--- PASS: TestAccAWSInstanceDataSource_privateIP (103.89s)
--- PASS: TestAccAWSInstanceDataSource_RootBlockDevice_KmsKeyId (110.43s)
--- PASS: TestAccAWSInstanceDataSource_rootInstanceStore (78.83s)
--- PASS: TestAccAWSInstanceDataSource_secondaryPrivateIPs (105.76s)
--- PASS: TestAccAWSInstanceDataSource_SecurityGroups (106.03s)
--- PASS: TestAccAWSInstanceDataSource_tags (96.40s)
--- PASS: TestAccAWSInstanceDataSource_VPC (104.42s)
--- PASS: TestAccAWSInstanceDataSource_VPCSecurityGroups (114.49s)
--- PASS: TestAccAWSInstancesDataSource_basic (81.10s)
--- PASS: TestAccAWSInstancesDataSource_instance_state_names (77.08s)
--- PASS: TestAccAWSInstancesDataSource_tags (81.14s)
--- PASS: TestAccAWSProvider_AssumeRole_Empty (21.70s)
--- PASS: TestAccAWSProvider_Endpoints (28.39s)
--- PASS: TestAccAWSProvider_IgnoreTags_EmptyConfigurationBlock (25.47s)
--- PASS: TestAccAWSProvider_IgnoreTags_KeyPrefixes_Multiple (27.07s)
--- PASS: TestAccAWSProvider_IgnoreTags_KeyPrefixes_None (28.15s)
--- PASS: TestAccAWSProvider_IgnoreTags_KeyPrefixes_One (28.17s)
--- PASS: TestAccAWSProvider_IgnoreTags_Keys_Multiple (22.78s)
--- PASS: TestAccAWSProvider_IgnoreTags_Keys_None (26.76s)
--- PASS: TestAccAWSProvider_IgnoreTags_Keys_One (25.43s)
--- PASS: TestAccAWSProvider_Region_AwsChina (19.01s)
--- PASS: TestAccAWSProvider_Region_AwsCommercial (19.50s)
--- PASS: TestAccAWSProvider_Region_AwsGovCloudUs (18.59s)
--- PASS: TestAccDataSourceAWSALBTargetGroup_basic (204.73s)
--- PASS: TestAccDataSourceAWSELB_basic (35.99s)
--- PASS: TestAccDataSourceAWSLB_BackwardsCompatibility (190.18s)
--- PASS: TestAccDataSourceAWSLB_basic (201.86s)
--- PASS: TestAccDataSourceAWSLBListener_BackwardsCompatibility (212.98s)
--- PASS: TestAccDataSourceAWSLBListener_basic (199.22s)
--- PASS: TestAccDataSourceAWSLBListener_https (191.53s)
--- PASS: TestAccDataSourceAWSLBTargetGroup_BackwardsCompatibility (212.46s)
--- PASS: TestAccDataSourceAWSMqBroker_basic (1203.59s)
--- PASS: TestAccDataSourceAwsNetworkAcls_basic (31.91s)
--- PASS: TestAccDataSourceAwsNetworkAcls_Filter (21.30s)
--- PASS: TestAccDataSourceAwsNetworkAcls_Tags (15.19s)
--- PASS: TestAccDataSourceAwsNetworkAcls_VpcID (19.49s)
--- PASS: TestAccDataSourceAwsSecurityGroups_filter (29.54s)
--- PASS: TestAccDataSourceAwsSecurityGroups_tag (28.10s)
--- PASS: TestAccDataSourceAwsVpcDhcpOptions_basic (33.86s)
--- PASS: TestAccDataSourceAwsVpcDhcpOptions_Filter (54.84s)
--- PASS: TestAccDataSourceCloudHsmV2Cluster_basic (282.12s)
@@ -59,7 +59,7 @@ resource "aws_subnet" "cloudhsm_v2_test_subnets" { | |||
|
|||
resource "aws_cloudhsm_v2_cluster" "cluster" { | |||
hsm_type = "hsm1.medium" | |||
subnet_ids = [aws_subnet.cloudhsm_v2_test_subnets.0.id, aws_subnet.cloudhsm_v2_test_subnets.1.id] | |||
subnet_ids = aws_subnet.cloudhsm_v2_test_subnets[*].id |
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.
😍
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Updates Terraform syntax for data source acceptance tests.
Relates #14417
Release note for CHANGELOG:
Output from acceptance testing: