Skip to content

Commit 991f53d

Browse files
fix: typo in quicksight user var
1 parent 5b903c6 commit 991f53d

File tree

7 files changed

+74
-67
lines changed

7 files changed

+74
-67
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<!-- markdownlint-disable -->
2+
23
<a href="https://www.appvia.io/"><img src="https://github.com/appvia/terraform-aws-cudos/blob/main/docs/banner.jpg?raw=true" alt="Appvia Banner"/></a><br/><p align="right"> <a href="https://registry.terraform.io/modules/appvia/cudos/aws/latest"><img src="https://img.shields.io/static/v1?label=APPVIA&message=Terraform%20Registry&color=191970&style=for-the-badge" alt="Terraform Registry"/></a></a> <a href="https://github.com/appvia/terraform-aws-cudos/releases/latest"><img src="https://img.shields.io/github/release/appvia/terraform-aws-cudos.svg?style=for-the-badge&color=006400" alt="Latest Release"/></a> <a href="https://appvia-community.slack.com/join/shared_invite/zt-1s7i7xy85-T155drryqU56emm09ojMVA#/shared-invite/email"><img src="https://img.shields.io/badge/Slack-Join%20Community-purple?style=for-the-badge&logo=slack" alt="Slack Community"/></a> <a href="https://github.com/appvia/terraform-aws-cudos/graphs/contributors"><img src="https://img.shields.io/github/contributors/appvia/terraform-aws-cudos.svg?style=for-the-badge&color=FF8C00" alt="Contributors"/></a>
34

45
<!-- markdownlint-restore -->
@@ -35,7 +36,7 @@ module "cudos_framework" {
3536
enable_sso = true
3637
enable_tao_dashboard = false
3738
saml_metadata = file("${path.module}/assets/saml-metadata.xml")
38-
quicksights_username = var.quicksights_username
39+
quicksight_username = var.quicksight_username
3940
tags = var.tags
4041
4142
providers = {
@@ -82,6 +83,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
8283
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.
8384

8485
<!-- BEGIN_TF_DOCS -->
86+
8587
## Providers
8688

8789
No providers.
@@ -93,4 +95,5 @@ No inputs.
9395
## Outputs
9496

9597
No outputs.
98+
9699
<!-- END_TF_DOCS -->

examples/basic/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
<!-- BEGIN_TF_DOCS -->
2+
23
## Providers
34

45
No providers.
56

67
## Inputs
78

8-
| Name | Description | Type | Default | Required |
9-
|------|-------------|------|---------|:--------:|
10-
| <a name="input_quicksights_username"></a> [quicksights\_username](#input\_quicksights\_username) | 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 |
9+
| Name | Description | Type | Default | Required |
10+
| -------------------------------------------------------------------------------------------- | ------------------------------------- | ------------- | --------------------------------------------------- | :------: |
11+
| <a name="input_quicksight_username"></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 |
1213

1314
## Outputs
1415

1516
No outputs.
16-
<!-- END_TF_DOCS -->
17+
18+
<!-- END_TF_DOCS -->

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module "destination" {
1818
dashboards_bucket_name = local.dashboard_bucket_name
1919
enable_sso = true
2020
payer_accounts = ["1234343434"]
21-
quicksights_username = var.quicksights_username
21+
quicksight_username = var.quicksight_username
2222
saml_metadata = file("${path.module}/assets/saml-metadata.xml")
2323
tags = var.tags
2424

examples/basic/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variable "tags" {
77
}
88
}
99

10-
variable "quicksights_username" {
10+
variable "quicksight_username" {
1111
description = "The username to use for QuickSight"
1212
type = string
1313
default = "admin"

0 commit comments

Comments
 (0)