Skip to content

Commit

Permalink
Remove extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharon Nam authored and Sharon Nam committed Jun 26, 2024
1 parent 5d94f0a commit 0b5c5dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
7 changes: 3 additions & 4 deletions internal/service/quicksight/account_subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,9 @@ func ResourceAccountSubscription() *schema.Resource {
ForceNew: true,
},
"iam_identity_center_instance_arn": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: verify.ValidARN,
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"last_name": {
Type: schema.TypeString,
Expand Down
10 changes: 4 additions & 6 deletions internal/service/quicksight/account_subscription_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,11 @@ func testAccCheckAccountSubscriptionExists(ctx context.Context, name string, acc

func testAccAccountSubscriptionConfig_basic(rName string) string {
return fmt.Sprintf(`
data "aws_ssoadmin_instances" "test" {}
resource "aws_quicksight_account_subscription" "test" {
account_name = %[1]q
authentication_method = "IAM_AND_QUICKSIGHT"
edition = "ENTERPRISE"
notification_email = %[2]q
account_name = %[1]q
authentication_method = "IAM_AND_QUICKSIGHT"
edition = "ENTERPRISE"
notification_email = %[2]q
}
`, rName, acctest.DefaultEmailAddress)
}

0 comments on commit 0b5c5dc

Please sign in to comment.