github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/aws/r/ssm_patch_group.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: aws_ssm_patch_group"
     4  sidebar_current: "docs-aws-resource-ssm-patch-group"
     5  description: |-
     6    Provides an SSM Patch Group resource
     7  ---
     8  
     9  # aws_ssm_patch_group
    10  
    11  Provides an SSM Patch Group resource
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "aws_ssm_patch_baseline" "production" {
    17    name  = "patch-baseline"
    18    approved_patches = ["KB123456"]
    19  }
    20  
    21  resource "aws_ssm_patch_group" "patchgroup" {
    22    baseline_id = "${aws_ssm_patch_baseline.production.id}"
    23    patch_group = "patch-group-name"
    24  }```
    25  
    26  ## Argument Reference
    27  
    28  The following arguments are supported:
    29  
    30  * `baseline_id` - (Required) The ID of the patch baseline to register the patch group with.
    31  * `patch_group` - (Required) The name of the patch group that should be registered with the patch baseline.
    32  
    33  ## Attributes Reference
    34  
    35  The following attributes are exported:
    36  
    37  * `id` - The ID of the patch baseline.