Skip to content

Commit

Permalink
r/aws_quicksight_namespace: docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jar-b committed Apr 12, 2023
1 parent a33e6d9 commit 1f2bf25
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions website/docs/r/quicksight_namespace.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
subcategory: "QuickSight"
layout: "aws"
page_title: "AWS: aws_quicksight_namespace"
description: |-
Terraform resource for managing an AWS QuickSight Namespace.
---

# Resource: aws_quicksight_namespace

Terraform resource for managing an AWS QuickSight Namespace.

## Example Usage

### Basic Usage

```terraform
resource "aws_quicksight_namespace" "example" {
namespace = "example"
}
```

## Argument Reference

The following arguments are required:

* `namespace` - (Required) Name of the namespace.

The following arguments are optional:

* `aws_account_id` - (Optional) AWS account ID.
* `identity_store` - (Optional) User identity directory type. Defaults to `QUICKSIGHT`, the only current valid value.
* `tags` - (Optional) Key-value map of resource tags. If configured with a provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.

## Attributes Reference

In addition to all arguments above, the following attributes are exported:

* `arn` - ARN of the Namespace.
* `capacity_region` - Namespace AWS Region.
* `creation_status` - Creation status of the namespace.
* `id` - A comma-delimited string joining AWS account ID and namespace.
* `tags_all` - A map of tags assigned to the resource, including those inherited from the provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block).

## Timeouts

[Configuration options](https://developer.hashicorp.com/terraform/language/resources/syntax#operation-timeouts):

* `create` - (Default `2m`)
* `delete` - (Default `2m`)

## Import

QuickSight Namespace can be imported using the AWS account ID and namespace separated by commas (`,`) e.g.,

```
$ terraform import aws_quicksight_namespace.example 123456789012,example
```

0 comments on commit 1f2bf25

Please sign in to comment.