Skip to content

Commit 81ee920

Browse files
Merge branch 'fix/non-iam-auth-error' of https://github.com/appvia/terraform-aws-cudos into fix/non-iam-auth-error
1 parent d3f93a1 commit 81ee920

File tree

6 files changed

+55
-62
lines changed

6 files changed

+55
-62
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
8383
To enable the Cora Data Exports, please see https://catalog.workshops.aws/awscid/en-US/dashboards/additional/cora for more information, you simply have to enable the `var.enable_cora_data_exports`. This will deploy an additional [cloudformation](./assets/cloudformation/cudos/data-exports-aggregation.yaml) with the management account.
8484

8585
<!-- BEGIN_TF_DOCS -->
86-
8786
## Providers
8887

8988
No providers.
@@ -95,5 +94,4 @@ No inputs.
9594
## Outputs
9695

9796
No outputs.
98-
9997
<!-- END_TF_DOCS -->

examples/basic/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
<!-- BEGIN_TF_DOCS -->
2-
32
## Providers
43

54
No providers.
65

76
## Inputs
87

9-
| Name | Description | Type | Default | Required |
10-
| --------------------------------------------------------------------------------------------------- | ------------------------------------- | ------------- | --------------------------------------------------- | :------: |
11-
| <a name="input_quicksight_dashboard_owner"></a> [quicksights_username](#input_quicksights_username) | The username to use for QuickSight | `string` | `"admin"` | no |
12-
| <a name="input_tags"></a> [tags](#input_tags) | A map of tags to add to all resources | `map(string)` | <pre>{<br/> "Environment": "Production"<br/>}</pre> | no |
8+
| Name | Description | Type | Default | Required |
9+
|------|-------------|------|---------|:--------:|
10+
| <a name="input_quicksight_dashboard_owner"></a> [quicksight\_dashboard\_owner](#input\_quicksight\_dashboard\_owner) | The username to use for QuickSight | `string` | `"admin"` | no |
11+
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | <pre>{<br/> "Environment": "Production"<br/>}</pre> | no |
1312

1413
## Outputs
1514

1615
No outputs.
17-
1816
<!-- END_TF_DOCS -->

examples/basic/main.tf

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ module "destination" {
1818
dashboards_bucket_name = local.dashboard_bucket_name
1919
enable_sso = true
2020
payer_accounts = ["1234343434"]
21-
quicksight_dashboard_owner = var.quicksight_dashboard_owner
2221
saml_metadata = file("${path.module}/assets/saml-metadata.xml")
2322
tags = var.tags
2423

24+
quicksight_admin_email = "[email protected]"
25+
quicksight_admin_username = "admin"
26+
quicksight_dashboard_owner = "admin"
27+
2528
providers = {
2629
aws = aws.cost_analysis
2730
aws.us_east_1 = aws.cost_analysis_us_east_1

0 commit comments

Comments
 (0)