Provides an SSM Patch Group resource
resource "aws_ssm_patch_baseline" "production" {
name = "patch-baseline"
approved_patches = ["KB123456"]
}
resource "aws_ssm_patch_group" "patchgroup" {
baseline_id = "${aws_ssm_patch_baseline.production.id}"
patch_group = "patch-group-name"
}
The following arguments are supported:
baseline_id - (Required) The ID of the patch baseline to register the patch group with. patch_group - (Required) The name of the patch group that should be registered with the patch baseline. In addition to all arguments above, the following attributes are exported:
id - The ID of the patch baseline.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/ssm_patch_group.html