AWS Amazon QuickSight User

This page shows how to write Terraform and CloudFormation for Amazon QuickSight User and write them securely.

aws_quicksight_user (Terraform)

The User in Amazon QuickSight can be configured in Terraform with the resource name aws_quicksight_user. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L6
resource "aws_quicksight_user" "exampleuser" {
  user_name     = "an-admin"
  email         = "leonardomferrari@gmail.com"
  identity_type = "IAM"
  user_role     = "ADMIN"
}

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Resource for managing QuickSight User

AWS::QuickSight::DataSource (CloudFormation)

The DataSource in QuickSight can be configured in CloudFormation with the resource name AWS::QuickSight::DataSource. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

Explanation in CloudFormation Registry

Creates a data source.

Frequently asked questions

What is AWS Amazon QuickSight User?

AWS Amazon QuickSight User is a resource for Amazon QuickSight of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Amazon QuickSight User?

For Terraform, the Flor91/AWS-Cloud-Practices source code example is useful. See the Terraform Example section for further details.