-
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
resource/aws_ssm_maintenance_window_target: Make resource updatable #4074
Conversation
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! 🚀
33 tests passed (all tests)
=== RUN TestAccAWSSSMMaintenanceWindowTarget_basic
--- PASS: TestAccAWSSSMMaintenanceWindowTarget_basic (7.87s)
=== RUN TestAccAWSSSMParameter_importBasic
--- PASS: TestAccAWSSSMParameter_importBasic (9.04s)
=== RUN TestAccAWSSSMAssociation_withDocumentVersion
--- PASS: TestAccAWSSSMAssociation_withDocumentVersion (12.08s)
=== RUN TestAccAWSSSMMaintenanceWindowTarget_update
--- PASS: TestAccAWSSSMMaintenanceWindowTarget_update (12.27s)
=== RUN TestAccAWSSSMParameter_basic
--- PASS: TestAccAWSSSMParameter_basic (6.20s)
=== RUN TestAccAWSSSMAssociation_withParameters
--- PASS: TestAccAWSSSMAssociation_withParameters (18.05s)
=== RUN TestAccAWSSSMDocument_params
--- PASS: TestAccAWSSSMDocument_params (31.80s)
=== RUN TestAccAWSSSMActivation_expirationDate
--- PASS: TestAccAWSSSMActivation_expirationDate (37.45s)
=== RUN TestAccAWSSSMDocument_update
--- PASS: TestAccAWSSSMDocument_update (37.90s)
=== RUN TestAccAWSSSMMaintenanceWindow_basic
--- PASS: TestAccAWSSSMMaintenanceWindow_basic (30.47s)
=== RUN TestAccAWSSSMAssociation_withTargets
--- PASS: TestAccAWSSSMAssociation_withTargets (39.65s)
=== RUN TestAccAWSSSMAssociation_withScheduleExpression
--- PASS: TestAccAWSSSMAssociation_withScheduleExpression (42.93s)
=== RUN TestAccAWSSSMDocument_permission
--- PASS: TestAccAWSSSMDocument_permission (43.93s)
=== RUN TestAccAWSSSMDocument_basic
--- PASS: TestAccAWSSSMDocument_basic (51.32s)
=== RUN TestAccAWSSSMDocument_automation
--- PASS: TestAccAWSSSMDocument_automation (60.38s)
=== RUN TestAccAWSSSMParameter_fullPath
--- PASS: TestAccAWSSSMParameter_fullPath (32.61s)
=== RUN TestAccAWSSSMPatchBaselineWithOperatingSystem
--- PASS: TestAccAWSSSMPatchBaselineWithOperatingSystem (27.31s)
=== RUN TestAccAWSSSMDocument_DocumentFormat_YAML
--- PASS: TestAccAWSSSMDocument_DocumentFormat_YAML (73.94s)
=== RUN TestAccAWSSSMPatchGroup_basic
--- PASS: TestAccAWSSSMPatchGroup_basic (38.81s)
=== RUN TestAccAWSSSMPatchBaseline_basic
--- PASS: TestAccAWSSSMPatchBaseline_basic (52.12s)
=== RUN TestAccAWSSSMParameter_update
--- PASS: TestAccAWSSSMParameter_update (80.91s)
=== RUN TestAccAWSSSMParameter_secure
--- PASS: TestAccAWSSSMParameter_secure (64.58s)
=== RUN TestAccAWSSSMParameter_updateDescription
--- PASS: TestAccAWSSSMParameter_updateDescription (93.03s)
=== RUN TestAccAWSSSMActivation_basic
--- PASS: TestAccAWSSSMActivation_basic (110.83s)
=== RUN TestAccAWSSSMParameter_changeNameForcesNew
--- PASS: TestAccAWSSSMParameter_changeNameForcesNew (98.29s)
=== RUN TestAccAWSSSMAssociation_withOutputLocation
--- PASS: TestAccAWSSSMAssociation_withOutputLocation (117.08s)
=== RUN TestAccAWSSSMParameter_secure_keyUpdate
--- PASS: TestAccAWSSSMParameter_secure_keyUpdate (82.61s)
=== RUN TestAccAWSSSMParameter_secure_with_key
--- PASS: TestAccAWSSSMParameter_secure_with_key (84.31s)
=== RUN TestAccAWSSSMAssociation_withAssociationName
--- PASS: TestAccAWSSSMAssociation_withAssociationName (128.86s)
=== RUN TestAccAWSSSMMaintenanceWindowTask_basic
--- PASS: TestAccAWSSSMMaintenanceWindowTask_basic (143.61s)
=== RUN TestAccAWSSSMParameter_disappears
--- PASS: TestAccAWSSSMParameter_disappears (135.87s)
=== RUN TestAccAWSSSMMaintenanceWindowTask_updateForcesNewResource
--- PASS: TestAccAWSSSMMaintenanceWindowTask_updateForcesNewResource (182.16s)
=== RUN TestAccAWSSSMAssociation_basic
--- PASS: TestAccAWSSSMAssociation_basic (208.46s)
@@ -3156,12 +3156,10 @@ func sliceContainsMap(l []interface{}, m map[string]interface{}) (int, bool) { | |||
return -1, false | |||
} | |||
|
|||
func expandAwsSsmTargets(d *schema.ResourceData) []*ssm.Target { | |||
func expandAwsSsmTargets(in []interface{}) []*ssm.Target { |
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.
🎉
This has been released in version 1.14.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
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! |
Test results