-
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
service/ec2: Remove deprecated (helper/schema.ResourceData).Partial() and (helper/schema.ResourceData).SetPartial() #12465
Conversation
… and (helper/schema.ResourceData).SetPartial() Reference: #12083 Reference: #12087 Previously: ``` aws/resource_aws_ami.go:414:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ami.go:434:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_ami.go:437:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ami_copy.go:218:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ami_copy.go:220:2: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_ami_copy.go:221:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ami_from_instance.go:200:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ami_from_instance.go:202:2: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_ami_from_instance.go:203:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_default_network_acl.go:172:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_default_network_acl.go:244:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ec2_client_vpn_endpoint.go:269:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_ec2_client_vpn_endpoint.go:337:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_instance.go:1217:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_instance.go:918:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_instance.go:927:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_instance.go:944:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_acl.go:254:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_network_acl.go:338:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_network_interface.go:264:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_network_interface.go:289:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:330:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:346:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:388:4: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:403:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:417:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_network_interface.go:428:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_spot_fleet_request.go:1200:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_subnet.go:168:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:186:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:201:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:204:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_subnet.go:265:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_subnet.go:274:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:292:4: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:361:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:379:4: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_subnet.go:383:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc.go:149:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc.go:150:2: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:190:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:208:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:220:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:232:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:259:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:262:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc.go:403:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc.go:421:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:442:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:469:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:496:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:537:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:552:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:562:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc.go:565:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc_endpoint_service.go:181:2: R007: deprecated (schema.ResourceData).Partial aws/resource_aws_vpc_endpoint_service.go:205:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc_endpoint_service.go:218:3: R008: deprecated (schema.ResourceData).SetPartial aws/resource_aws_vpc_endpoint_service.go:229:2: R007: deprecated (schema.ResourceData).Partial ``` Output from acceptance testing: ``` --- PASS: TestAccAWSAMI_basic (78.71s) --- PASS: TestAccAWSAMI_disappears (57.61s) --- PASS: TestAccAWSAMI_snapshotSize (64.52s) --- PASS: TestAccAWSAMI_tags (93.26s) --- PASS: TestAccAWSAMICopy_basic (365.47s) --- PASS: TestAccAWSAMICopy_Description (405.15s) --- PASS: TestAccAWSAMICopy_EnaSupport (391.75s) --- PASS: TestAccAWSAMICopy_tags (419.90s) --- PASS: TestAccAWSAMIFromInstance_basic (369.65s) --- PASS: TestAccAWSAMIFromInstance_tags (421.26s) --- PASS: TestAccAWSDefaultNetworkAcl_basic (30.84s) --- PASS: TestAccAWSDefaultNetworkAcl_basicIpv6Vpc (40.38s) --- PASS: TestAccAWSDefaultNetworkAcl_deny_ingress (38.32s) --- PASS: TestAccAWSDefaultNetworkAcl_SubnetReassign (83.61s) --- PASS: TestAccAWSDefaultNetworkAcl_SubnetRemoval (74.22s) --- PASS: TestAccAWSDefaultNetworkAcl_withIpv6Ingress (33.89s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_basic (22.69s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_disappears (18.67s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_msAD (1678.33s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_splitTunnel (36.58s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_tags (48.82s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_withDNSServers (36.09s) --- PASS: TestAccAwsEc2ClientVpnEndpoint_withLogGroup (42.49s) --- PASS: TestAccAWSENI_attached (243.84s) --- PASS: TestAccAWSENI_basic (48.62s) --- PASS: TestAccAWSENI_computedIPs (40.94s) --- PASS: TestAccAWSENI_disappears (39.87s) --- PASS: TestAccAWSENI_ignoreExternalAttachment (114.17s) --- PASS: TestAccAWSENI_PrivateIpsCount (112.43s) --- PASS: TestAccAWSENI_sourceDestCheck (44.73s) --- PASS: TestAccAWSENI_updatedDescription (70.49s) --- PASS: TestAccAWSInstance_addSecondaryInterface (101.85s) --- PASS: TestAccAWSInstance_addSecurityGroupNetworkInterface (119.12s) --- PASS: TestAccAWSInstance_associatePublic_defaultPrivate (72.41s) --- PASS: TestAccAWSInstance_associatePublic_defaultPublic (82.27s) --- PASS: TestAccAWSInstance_associatePublic_explicitPrivate (89.32s) --- PASS: TestAccAWSInstance_associatePublic_explicitPublic (80.62s) --- PASS: TestAccAWSInstance_associatePublic_overridePrivate (91.49s) --- PASS: TestAccAWSInstance_associatePublic_overridePublic (72.13s) --- PASS: TestAccAWSInstance_associatePublicIPAndPrivateIP (81.44s) --- PASS: TestAccAWSInstance_basic (183.70s) --- PASS: TestAccAWSInstance_blockDevices (109.47s) --- PASS: TestAccAWSInstance_changeInstanceType (162.79s) --- PASS: TestAccAWSInstance_CreditSpecification_Empty_NonBurstable (325.46s) --- PASS: TestAccAWSInstance_creditSpecification_isNotAppliedToNonBurstable (101.10s) --- PASS: TestAccAWSInstance_creditSpecification_standardCpuCredits (103.72s) --- PASS: TestAccAWSInstance_creditSpecification_standardCpuCredits_t2Tot3Taint (400.62s) --- PASS: TestAccAWSInstance_creditSpecification_unknownCpuCredits_t2 (92.50s) --- PASS: TestAccAWSInstance_creditSpecification_unknownCpuCredits_t3 (285.59s) --- PASS: TestAccAWSInstance_creditSpecification_unlimitedCpuCredits (103.30s) --- PASS: TestAccAWSInstance_creditSpecification_unlimitedCpuCredits_t2Tot3Taint (379.85s) --- PASS: TestAccAWSInstance_creditSpecification_unspecifiedDefaultsToStandard (82.16s) --- PASS: TestAccAWSInstance_CreditSpecification_UnspecifiedToEmpty_NonBurstable (125.59s) --- PASS: TestAccAWSInstance_creditSpecification_updateCpuCredits (96.78s) --- PASS: TestAccAWSInstance_creditSpecificationT3_standardCpuCredits (84.68s) --- PASS: TestAccAWSInstance_creditSpecificationT3_unlimitedCpuCredits (62.70s) --- PASS: TestAccAWSInstance_creditSpecificationT3_unspecifiedDefaultsToUnlimited (326.84s) --- PASS: TestAccAWSInstance_creditSpecificationT3_updateCpuCredits (106.79s) --- PASS: TestAccAWSInstance_disableApiTermination (115.81s) --- PASS: TestAccAWSInstance_disappears (241.97s) --- PASS: TestAccAWSInstance_EbsBlockDevice_KmsKeyArn (148.32s) --- PASS: TestAccAWSInstance_forceNewAndTagsDrift (120.55s) --- PASS: TestAccAWSInstance_getPasswordData_falseToTrue (223.75s) --- PASS: TestAccAWSInstance_getPasswordData_trueToFalse (241.06s) --- PASS: TestAccAWSInstance_GP2IopsDevice (90.09s) --- PASS: TestAccAWSInstance_GP2WithIopsValue (113.39s) --- PASS: TestAccAWSInstance_hibernation (169.65s) --- PASS: TestAccAWSInstance_inDefaultVpcBySgId (77.63s) --- PASS: TestAccAWSInstance_inDefaultVpcBySgName (79.23s) --- PASS: TestAccAWSInstance_instanceProfileChange (208.56s) --- PASS: TestAccAWSInstance_ipv6_supportAddressCount (81.76s) --- PASS: TestAccAWSInstance_ipv6_supportAddressCountWithIpv4 (91.39s) --- PASS: TestAccAWSInstance_ipv6AddressCountAndSingleAddressCausesError (13.22s) --- PASS: TestAccAWSInstance_keyPairCheck (67.97s) --- PASS: TestAccAWSInstance_multipleRegions (260.89s) --- PASS: TestAccAWSInstance_NetworkInstanceRemovingAllSecurityGroups (91.04s) --- PASS: TestAccAWSInstance_NetworkInstanceSecurityGroups (163.04s) --- PASS: TestAccAWSInstance_NetworkInstanceVPCSecurityGroupIDs (83.27s) --- PASS: TestAccAWSInstance_noAMIEphemeralDevices (80.32s) --- PASS: TestAccAWSInstance_placementGroup (66.52s) --- PASS: TestAccAWSInstance_primaryNetworkInterface (84.04s) --- PASS: TestAccAWSInstance_primaryNetworkInterfaceSourceDestCheck (74.50s) --- PASS: TestAccAWSInstance_privateIP (81.69s) --- PASS: TestAccAWSInstance_RootBlockDevice_KmsKeyArn (173.75s) --- PASS: TestAccAWSInstance_rootBlockDeviceMismatch (109.59s) --- PASS: TestAccAWSInstance_rootInstanceStore (150.64s) --- PASS: TestAccAWSInstance_sourceDestCheck (126.46s) --- PASS: TestAccAWSInstance_tags (147.76s) --- PASS: TestAccAWSInstance_UserData_EmptyStringToUnspecified (91.50s) --- PASS: TestAccAWSInstance_UserData_UnspecifiedToEmptyString (91.89s) --- PASS: TestAccAWSInstance_userDataBase64 (239.10s) --- PASS: TestAccAWSInstance_volumeTags (152.07s) --- PASS: TestAccAWSInstance_volumeTagsComputed (142.92s) --- PASS: TestAccAWSInstance_volumeTagsComputed (146.73s) --- PASS: TestAccAWSInstance_vpc (79.83s) --- PASS: TestAccAWSInstance_withIamInstanceProfile (117.42s) --- PASS: TestAccAWSNetworkAcl_basic (38.51s) --- PASS: TestAccAWSNetworkAcl_CaseSensitivityNoChanges (46.29s) --- PASS: TestAccAWSNetworkAcl_disappears (33.69s) --- PASS: TestAccAWSNetworkAcl_Egress_ConfigMode (82.91s) --- PASS: TestAccAWSNetworkAcl_EgressAndIngressRules (38.77s) --- PASS: TestAccAWSNetworkAcl_espProtocol (36.38s) --- PASS: TestAccAWSNetworkAcl_Ingress_ConfigMode (80.27s) --- PASS: TestAccAWSNetworkAcl_ipv6ICMPRules (31.10s) --- PASS: TestAccAWSNetworkAcl_ipv6Rules (49.98s) --- PASS: TestAccAWSNetworkAcl_ipv6VpcRules (34.61s) --- PASS: TestAccAWSNetworkAcl_OnlyEgressRules (43.51s) --- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_basic (47.89s) --- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_update (71.35s) --- PASS: TestAccAWSNetworkAcl_SubnetChange (74.18s) --- PASS: TestAccAWSNetworkAcl_Subnets (74.71s) --- PASS: TestAccAWSNetworkAcl_SubnetsDelete (82.26s) --- PASS: TestAccAWSSpotFleetRequest_associatePublicIpAddress (372.99s) --- PASS: TestAccAWSSpotFleetRequest_basic (231.12s) --- PASS: TestAccAWSSpotFleetRequest_changePriceForcesNewRequest (582.29s) --- PASS: TestAccAWSSpotFleetRequest_diversifiedAllocation (350.94s) --- PASS: TestAccAWSSpotFleetRequest_fleetType (241.77s) --- PASS: TestAccAWSSpotFleetRequest_iamInstanceProfileArn (272.75s) --- PASS: TestAccAWSSpotFleetRequest_instanceInterruptionBehavior (242.11s) --- PASS: TestAccAWSSpotFleetRequest_LaunchSpecification_EbsBlockDevice_KmsKeyId (147.02s) --- PASS: TestAccAWSSpotFleetRequest_LaunchSpecification_RootBlockDevice_KmsKeyId (146.75s) --- PASS: TestAccAWSSpotFleetRequest_lowestPriceAzInGivenList (265.13s) --- PASS: TestAccAWSSpotFleetRequest_lowestPriceAzOrSubnetInRegion (355.97s) --- PASS: TestAccAWSSpotFleetRequest_lowestPriceSubnetInGivenList (264.26s) --- PASS: TestAccAWSSpotFleetRequest_multipleInstancePools (286.87s) --- PASS: TestAccAWSSpotFleetRequest_multipleInstanceTypesInSameAz (297.89s) --- PASS: TestAccAWSSpotFleetRequest_multipleInstanceTypesInSameSubnet (264.21s) --- PASS: TestAccAWSSpotFleetRequest_overriddingSpotPrice (261.23s) --- PASS: TestAccAWSSpotFleetRequest_placementTenancyAndGroup (60.68s) --- PASS: TestAccAWSSpotFleetRequest_updateExcessCapacityTerminationPolicy (554.15s) --- PASS: TestAccAWSSpotFleetRequest_updateTargetCapacity (750.82s) --- PASS: TestAccAWSSpotFleetRequest_withEBSDisk (333.68s) --- PASS: TestAccAWSSpotFleetRequest_WithELBs (345.96s) --- PASS: TestAccAWSSpotFleetRequest_withoutSpotPrice (266.18s) --- PASS: TestAccAWSSpotFleetRequest_withTags (254.92s) --- PASS: TestAccAWSSpotFleetRequest_WithTargetGroups (430.77s) --- PASS: TestAccAWSSpotFleetRequest_withWeightedCapacity (295.99s) --- PASS: TestAccAWSSubnet_availabilityZoneId (30.67s) --- PASS: TestAccAWSSubnet_basic (30.59s) --- PASS: TestAccAWSSubnet_enableIpv6 (50.96s) --- PASS: TestAccAWSSubnet_ignoreTags (56.29s) --- PASS: TestAccAWSSubnet_ipv6 (77.14s) --- PASS: TestAccAWSVpc_AssignGeneratedIpv6CidrBlock (73.30s) --- PASS: TestAccAWSVpc_basic (29.97s) --- PASS: TestAccAWSVpc_bothDnsOptionsSet (33.54s) --- PASS: TestAccAWSVpc_classiclinkDnsSupportOptionSet (31.49s) --- PASS: TestAccAWSVpc_classiclinkOptionSet (32.05s) --- PASS: TestAccAWSVpc_coreMismatchedDiffs (25.26s) --- PASS: TestAccAWSVpc_DisabledDnsSupport (31.22s) --- PASS: TestAccAWSVpc_disappears (16.78s) --- PASS: TestAccAWSVpc_ignoreTags (50.85s) --- PASS: TestAccAWSVpc_tags (51.10s) --- PASS: TestAccAWSVpc_Tenancy (74.07s) --- PASS: TestAccAWSVpc_update (44.39s) --- PASS: TestAccAWSVpcEndpointService_AllowedPrincipalsAndTags (286.82s) --- PASS: TestAccAWSVpcEndpointService_basic (266.19s) --- PASS: TestAccAWSVpcEndpointService_removed (303.85s) ```
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.
LGTM 🚀
--- PASS: TestAccAwsEc2ClientVpnEndpoint_disappears (15.01s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_basic (16.00s)
--- PASS: TestAccAWSDefaultNetworkAcl_basicIpv6Vpc (20.34s)
--- PASS: TestAccAWSDefaultNetworkAcl_deny_ingress (20.94s)
--- PASS: TestAccAWSDefaultNetworkAcl_withIpv6Ingress (20.87s)
--- PASS: TestFetchRootDevice (0.00s)
--- PASS: TestFetchRootDevice/device_name_in_mappings (0.00s)
--- PASS: TestFetchRootDevice/device_name_not_in_mappings (0.00s)
--- PASS: TestFetchRootDevice/no_images (0.00s)
--- PASS: TestAccAWSDefaultNetworkAcl_basic (20.94s)
--- PASS: TestAccAWSVpc_coreMismatchedDiffs (25.76s)
--- PASS: TestAccAWSDefaultNetworkAcl_SubnetRemoval (26.42s)
--- SKIP: TestAccAWSInstance_inEc2Classic (1.17s)
--- PASS: TestAccAWSDefaultNetworkAcl_SubnetReassign (30.64s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_withLogGroup (18.73s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_withDNSServers (19.52s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_splitTunnel (17.42s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_tags (24.15s)
--- PASS: TestAccAWSAMI_disappears (46.64s)
--- PASS: TestAccAWSAMI_snapshotSize (49.02s)
--- PASS: TestAccAWSAMI_tags (51.75s)
--- PASS: TestAccAWSAMI_basic (53.66s)
--- PASS: TestAccAWSInstance_GP2IopsDevice (79.84s)
--- PASS: TestAccAWSInstance_GP2WithIopsValue (84.37s)
--- PASS: TestAccAWSInstance_blockDevices (79.73s)
--- PASS: TestAccAWSInstance_EbsBlockDevice_KmsKeyArn (97.70s)
--- PASS: TestAccAWSInstance_ipv6AddressCountAndSingleAddressCausesError (9.91s)
--- PASS: TestAccAWSInstance_rootInstanceStore (89.43s)
--- PASS: TestAccAWSInstance_basic (128.00s)
--- PASS: TestAccAWSInstance_disableApiTermination (104.51s)
--- PASS: TestAccAWSInstance_sourceDestCheck (113.13s)
--- PASS: TestAccAWSInstance_placementGroup (64.09s)
--- PASS: TestAccAWSInstance_vpc (73.85s)
--- PASS: TestAccAWSInstance_inDefaultVpcBySgId (170.23s)
--- PASS: TestAccAWSInstance_inDefaultVpcBySgName (184.87s)
--- PASS: TestAccAWSInstance_ipv6_supportAddressCount (84.51s)
--- PASS: TestAccAWSInstance_ipv6_supportAddressCountWithIpv4 (76.16s)
--- PASS: TestAccAWSInstance_noAMIEphemeralDevices (180.47s)
--- PASS: TestAccAWSInstance_NetworkInstanceRemovingAllSecurityGroups (81.90s)
--- PASS: TestAccAWSInstance_NetworkInstanceSecurityGroups (85.77s)
--- PASS: TestAccAWSInstance_NetworkInstanceVPCSecurityGroupIDs (76.10s)
--- PASS: TestAccAWSInstance_privateIP (74.07s)
--- PASS: TestAccAWSInstance_userDataBase64 (253.75s)
--- PASS: TestAccAWSInstance_volumeTags (99.66s)
--- PASS: TestAccAWSInstance_volumeTagsComputed (113.17s)
--- PASS: TestAccAWSInstance_associatePublicIPAndPrivateIP (83.73s)
--- PASS: TestAccAWSInstance_rootBlockDeviceMismatch (73.65s)
--- FAIL: TestAccAWSInstance_multipleRegions (225.36s)
--- PASS: TestAccAWSAMICopy_EnaSupport (362.59s)
--- PASS: TestAccAWSAMICopy_basic (363.52s)
--- PASS: TestAccAWSInstance_primaryNetworkInterfaceSourceDestCheck (77.49s)
--- PASS: TestAccAWSAMIFromInstance_basic (367.89s)
--- PASS: TestAccAWSInstance_instanceProfileChange (166.42s)
--- PASS: TestAccAWSAMICopy_Description (377.57s)
--- PASS: TestAccAWSInstance_RootBlockDevice_KmsKeyArn (347.23s)
--- PASS: TestAccAWSAMICopy_tags (380.57s)
--- PASS: TestAccAWSAMIFromInstance_tags (401.64s)
--- PASS: TestAccAWSInstance_addSecondaryInterface (110.71s)
--- PASS: TestAccAWSInstance_addSecurityGroupNetworkInterface (106.11s)
--- PASS: TestAccAWSInstance_keyPairCheck (183.31s)
--- PASS: TestAccAWSInstance_withIamInstanceProfile (214.93s)
--- PASS: TestAccAWSInstance_tags (249.12s)
--- PASS: TestAccAWSInstance_associatePublic_defaultPublic (77.99s)
--- PASS: TestAccAWSInstance_associatePublic_explicitPublic (83.96s)
--- PASS: TestAccAWSInstance_associatePublic_overridePrivate (83.38s)
--- PASS: TestAccAWSInstance_associatePublic_explicitPrivate (93.62s)
--- PASS: TestAccAWSInstance_associatePublic_overridePublic (93.36s)
--- PASS: TestAccAWSInstance_forceNewAndTagsDrift (226.45s)
--- PASS: TestAccAWSInstance_primaryNetworkInterface (186.60s)
--- PASS: TestAccAWSInstance_CreditSpecification_UnspecifiedToEmpty_NonBurstable (94.33s)
--- PASS: TestAccAWSInstance_creditSpecification_unspecifiedDefaultsToStandard (76.86s)
--- PASS: TestAccAWSInstance_associatePublic_defaultPrivate (178.54s)
--- PASS: TestAccAWSInstance_creditSpecification_unknownCpuCredits_t2 (74.75s)
--- PASS: TestAccAWSInstance_creditSpecification_standardCpuCredits (84.18s)
--- PASS: TestAccAWSInstance_creditSpecification_unlimitedCpuCredits (93.32s)
--- PASS: TestInstanceTenancySchema (0.00s)
--- PASS: TestInstanceHostIDSchema (0.00s)
--- PASS: TestInstanceCpuCoreCountSchema (0.00s)
--- PASS: TestInstanceCpuThreadsPerCoreSchema (0.00s)
--- PASS: TestAccAWSInstance_getPasswordData_trueToFalse (135.58s)
--- PASS: TestAccAWSInstance_creditSpecificationT3_standardCpuCredits (62.07s)
--- PASS: TestAccAWSInstance_getPasswordData_falseToTrue (141.13s)
--- PASS: TestAccAWSInstance_changeInstanceType (236.72s)
--- PASS: TestAccAWSNetworkAcl_disappears (12.02s)
--- PASS: TestAccAWSNetworkAcl_basic (21.92s)
--- PASS: TestAccAWSInstance_creditSpecification_updateCpuCredits (107.84s)
--- PASS: TestAccAWSNetworkAcl_EgressAndIngressRules (25.32s)
--- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_basic (26.35s)
--- PASS: TestAccAWSNetworkAcl_CaseSensitivityNoChanges (18.23s)
--- PASS: TestAccAWSNetworkAcl_Ingress_ConfigMode (49.84s)
--- PASS: TestAccAWSNetworkAcl_OnlyEgressRules (18.08s)
--- PASS: TestAccAWSNetworkAcl_Egress_ConfigMode (60.37s)
--- PASS: TestAccAWSInstance_UserData_EmptyStringToUnspecified (97.85s)
--- PASS: TestAccAWSInstance_creditSpecificationT3_updateCpuCredits (119.49s)
--- PASS: TestAccAWSInstance_creditSpecificationT3_unlimitedCpuCredits (125.25s)
--- PASS: TestAccAWSNetworkAcl_OnlyIngressRules_update (49.31s)
--- PASS: TestAccAWSNetworkAcl_ipv6VpcRules (13.37s)
--- PASS: TestAccAWSNetworkAcl_ipv6Rules (26.16s)
--- FAIL: TestAccAWSNetworkAcl_SubnetChange (44.77s)
--- PASS: TestAccAWSNetworkAcl_ipv6ICMPRules (23.21s)
--- PASS: TestAccAWSENI_basic (21.71s)
--- PASS: TestAccAWSNetworkAcl_espProtocol (27.70s)
--- PASS: TestAccAWSENI_disappears (24.20s)
--- PASS: TestAccAWSNetworkAcl_Subnets (49.03s)
--- PASS: TestAccAWSNetworkAcl_SubnetsDelete (49.31s)
--- PASS: TestAccAWSInstance_UserData_UnspecifiedToEmptyString (121.96s)
--- PASS: TestAccAWSENI_sourceDestCheck (19.54s)
--- PASS: TestAccAWSENI_computedIPs (14.61s)
--- PASS: TestAccAWSInstance_creditSpecification_unlimitedCpuCredits_t2Tot3Taint (149.74s)
--- PASS: TestAccAWSInstance_disappears (149.52s)
--- PASS: TestAccAWSInstance_metadataOptions (127.49s)
--- PASS: TestAccAWSENI_updatedDescription (37.20s)
--- PASS: TestAccAWSInstance_hibernation (141.38s)
--- PASS: TestAccAWSENI_PrivateIpsCount (56.53s)
--- PASS: TestAccAWSInstance_CreditSpecification_Empty_NonBurstable (309.12s)
--- PASS: TestAccAWSInstance_creditSpecification_isNotAppliedToNonBurstable (263.51s)
--- PASS: TestAccAWSInstance_creditSpecificationT3_unspecifiedDefaultsToUnlimited (280.76s)
--- PASS: TestAccAWSInstance_creditSpecification_unknownCpuCredits_t3 (317.49s)
--- PASS: TestAccAWSENI_attached (212.73s)
--- PASS: TestAccAWSENI_ignoreExternalAttachment (208.04s)
--- PASS: TestAccAWSSpotFleetRequest_basic (238.45s)
--- PASS: TestAccAWSSpotFleetRequest_lowestPriceAzInGivenList (265.88s)
--- PASS: TestAccAWSSpotFleetRequest_multipleInstanceTypesInSameSubnet (206.76s)
--- PASS: TestAccAWSSpotFleetRequest_lowestPriceSubnetInGivenList (256.10s)
--- PASS: TestAccAWSSpotFleetRequest_instanceInterruptionBehavior (295.56s)
--- PASS: TestAccAWSSpotFleetRequest_fleetType (295.36s)
--- PASS: TestAccAWSSpotFleetRequest_iamInstanceProfileArn (296.92s)
--- PASS: TestAccAWSInstance_creditSpecification_standardCpuCredits_t2Tot3Taint (494.14s)
--- SKIP: TestAccAWSSpotFleetRequest_WithInstanceStoreAmi (0.00s)
--- PASS: TestAccAWSSpotFleetRequest_placementTenancyAndGroup (59.69s)
--- PASS: TestAccAWSSpotFleetRequest_multipleInstanceTypesInSameAz (306.48s)
--- PASS: TestAccAWSSubnet_basic (10.21s)
--- PASS: TestAccAWSSubnet_ignoreTags (18.59s)
--- PASS: TestAccAWSSubnet_enableIpv6 (16.96s)
--- PASS: TestAccAWSSpotFleetRequest_associatePublicIpAddress (378.70s)
--- PASS: TestAccAWSSubnet_ipv6 (24.68s)
--- PASS: TestAccAWSSubnet_availabilityZoneId (10.34s)
--- PASS: TestAccAWSVpc_basic (10.41s)
--- PASS: TestAccAWSVpc_disappears (7.04s)
--- PASS: TestAccAWSVpc_ignoreTags (17.07s)
--- FAIL: TestAccAWSSpotFleetRequest_lowestPriceAzOrSubnetInRegion (408.58s)
--- FAIL: TestAccAWSSpotFleetRequest_updateTargetCapacity (424.06s)
--- PASS: TestAccAWSVpc_AssignGeneratedIpv6CidrBlock (22.09s)
--- PASS: TestAccAWSVpc_Tenancy (22.45s)
--- PASS: TestAccAWSSpotFleetRequest_withEBSDisk (216.34s)
--- PASS: TestAccAWSVpc_tags (15.93s)
--- PASS: TestAccAWSVpc_bothDnsOptionsSet (9.65s)
--- PASS: TestAccAWSVpc_update (14.83s)
--- PASS: TestAccAWSVpc_DisabledDnsSupport (10.18s)
--- PASS: TestAccAWSVpc_classiclinkOptionSet (10.40s)
--- PASS: TestAccAWSVpc_classiclinkDnsSupportOptionSet (9.91s)
--- PASS: TestAccAWSSpotFleetRequest_LaunchSpecification_EbsBlockDevice_KmsKeyId (185.51s)
--- PASS: TestAccAWSSpotFleetRequest_LaunchSpecification_RootBlockDevice_KmsKeyId (185.26s)
--- FAIL: TestAccAWSSpotFleetRequest_overriddingSpotPrice (400.61s)
--- PASS: TestAccAWSSpotFleetRequest_withWeightedCapacity (306.18s)
--- PASS: TestAccAWSSpotFleetRequest_updateExcessCapacityTerminationPolicy (501.21s)
--- FAIL: TestAccAWSSpotFleetRequest_withoutSpotPrice (401.08s)
--- PASS: TestAccAWSSpotFleetRequest_changePriceForcesNewRequest (510.19s)
--- PASS: TestAccAWSSpotFleetRequest_withTags (235.22s)
--- FAIL: TestAccAWSSpotFleetRequest_diversifiedAllocation (409.98s)
--- PASS: TestAccAWSSpotFleetRequest_WithELBs (273.68s)
--- PASS: TestAccAWSSpotFleetRequest_multipleInstancePools (397.75s)
--- PASS: TestAccAWSVpcEndpointService_removed (219.00s)
--- PASS: TestAccAWSVpcEndpointService_basic (257.07s)
--- PASS: TestAccAWSSpotFleetRequest_WithTargetGroups (365.44s)
--- PASS: TestAccAWSVpcEndpointService_AllowedPrincipalsAndTags (289.15s)
--- PASS: TestAccAwsEc2ClientVpnEndpoint_msAD (1748.47s)
The test failures are unrelated to this change:
TestAccAWSNetworkAcl_SubnetChange
TestAccAWSSpotFleetRequest_lowestPriceAzOrSubnetInRegion
TestAccAWSSpotFleetRequest_updateTargetCapacity
TestAccAWSSpotFleetRequest_overriddingSpotPrice
TestAccAWSSpotFleetRequest_withoutSpotPrice
TestAccAWSSpotFleetRequest_diversifiedAllocation
This has been released in version 2.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 for triage. Thanks! |
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! |
Community Note
Reference: #12083
Reference: #12087
Release note for CHANGELOG:
Previously:
Output from acceptance testing: