Skip to content

Commit

Permalink
fix: issues raised from customer (#54)
Browse files Browse the repository at this point in the history
* fix: the provider was incorrect

* fix: adding a depends_on to the subscription
  • Loading branch information
gambol99 authored Sep 10, 2024
1 parent 20b4eff commit adb369a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ resource "aws_quicksight_account_subscription" "subscription" {
authentication_method = var.quicksight_subscription_authentication_method
edition = var.quicksight_subscription_edition
notification_email = var.quicksight_subscription_email

provider = aws.cost_analysis
}

## Provision a SAML identity provider in the data collection account - this will be
Expand Down Expand Up @@ -273,6 +275,7 @@ module "dashboards" {
depends_on = [
module.collector,
module.source,
aws_quicksight_account_subscription.subscription,
]

providers = {
Expand Down

0 comments on commit adb369a

Please sign in to comment.