Resource: aws_quicksight_group

Resource for managing QuickSight Group

Example Usage

resource "aws_quicksight_group" "example" {
  group_name = "tf-example"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import QuickSight Group using the aws account id, namespace and group name separated by /. For example:

import {
  to = aws_quicksight_group.example
  id = "123456789123/default/tf-example"
}

Using terraform import, import QuickSight Group using the aws account id, namespace and group name separated by /. For example:

% terraform import aws_quicksight_group.example 123456789123/default/tf-example