groups
Creates, updates, deletes or gets a group resource or lists groups in a region
Overview
| Name | groups |
| Type | Resource |
| Description | Schema for ResourceGroups::Group |
| Id | awscc.resourcegroups.groups |
Fields
- get (all properties)
- list (identifiers only)
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the resource group |
description | string | The description of the resource group |
resource_query | object | |
tags | array | |
arn | string | The Resource Group ARN. |
configuration | array | |
resources | array | |
region | string | AWS region. |
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the resource group |
region | string | AWS region. |
For more information, see AWS::ResourceGroups::Group.
Methods
| Name | Resource | Accessible by | Required Params |
|---|---|---|---|
create_resource | groups | INSERT | Name, region |
delete_resource | groups | DELETE | Identifier, region |
update_resource | groups | UPDATE | Identifier, PatchDocument, region |
list_resources | groups_list_only | SELECT | region |
get_resource | groups | SELECT | Identifier, region |
SELECT examples
- get (all properties)
- list (identifiers only)
Gets all properties from an individual group.
SELECT
region,
name,
description,
resource_query,
tags,
arn,
configuration,
resources
FROM awscc.resourcegroups.groups
WHERE
region = '{{ region }}' AND
Identifier = '{{ name }}';
Lists all groups in a region.
SELECT
region,
name
FROM awscc.resourcegroups.groups_list_only
WHERE
region = '{{ region }}';
INSERT example
Use the following StackQL query and manifest file to create a new group resource, using stack-deploy.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO awscc.resourcegroups.groups (
Name,
region
)
SELECT
'{{ name }}',
'{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
/*+ create */
INSERT INTO awscc.resourcegroups.groups (
Name,
Description,
ResourceQuery,
Tags,
Configuration,
Resources,
region
)
SELECT
'{{ name }}',
'{{ description }}',
'{{ resource_query }}',
'{{ tags }}',
'{{ configuration }}',
'{{ resources }}',
'{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: group
props:
- name: name
value: '{{ name }}'
- name: description
value: '{{ description }}'
- name: resource_query
value:
type: '{{ type }}'
query:
resource_type_filters:
- '{{ resource_type_filters[0] }}'
stack_identifier: '{{ stack_identifier }}'
tag_filters:
- key: '{{ key }}'
values:
- '{{ values[0] }}'
- name: tags
value:
- key: '{{ key }}'
value: '{{ value }}'
- name: configuration
value:
- type: '{{ type }}'
parameters:
- name: '{{ name }}'
values:
- '{{ values[0] }}'
- name: resources
value:
- '{{ resources[0] }}'
UPDATE example
Use the following StackQL query and manifest file to update a group resource, using stack-deploy.
/*+ update */
UPDATE awscc.resourcegroups.groups
SET PatchDocument = string('{{ {
"Description": description,
"ResourceQuery": resource_query,
"Tags": tags,
"Configuration": configuration,
"Resources": resources
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ name }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
DELETE example
/*+ delete */
DELETE FROM awscc.resourcegroups.groups
WHERE
Identifier = '{{ name }}' AND
region = '{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;
Additional Parameters
Mutable resources in the Cloud Control provider support additional optional parameters which can be supplied with INSERT, UPDATE, or DELETE operations. These include:
| Parameter | Description |
|---|---|
ClientToken | A unique identifier to ensure the idempotency of the resource request.This allows the provider to accurately distinguish between retries and new requests.A client token is valid for 36 hours once used. After that, a resource request with the same client token is treated as a new request. If you do not specify a client token, one is generated for inclusion in the request. |
RoleArn | The ARN of the IAM role used to perform this resource operation.The role specified must have the permissions required for this operation.If you do not specify a role, a temporary session is created using your AWS user credentials. |
TypeVersionId | For private resource types, the type version to use in this resource operation.If you do not specify a resource version, the default version is used. |
Permissions
To operate on the groups resource, the following permissions are required:
- Create
- Read
- Update
- Delete
- List
resource-groups:CreateGroup,
resource-groups:Tag,
cloudformation:DescribeStacks,
cloudformation:ListStackResources,
resource-groups:ListGroupResources,
resource-groups:GroupResources
resource-groups:GetGroup,
resource-groups:GetGroupQuery,
resource-groups:GetTags,
resource-groups:GetGroupConfiguration,
resource-groups:ListGroupResources
resource-groups:UpdateGroup,
resource-groups:GetTags,
resource-groups:GetGroupQuery,
resource-groups:UpdateGroupQuery,
resource-groups:Tag,
resource-groups:Untag,
resource-groups:PutGroupConfiguration,
resource-groups:GetGroupConfiguration,
resource-groups:ListGroupResources,
resource-groups:GroupResources,
resource-groups:UnGroupResources
resource-groups:DeleteGroup,
resource-groups:UnGroupResources
resource-groups:ListGroups