Skip to content

Commit

Permalink
Merge pull request #433 from j3-signalroom/github_issue-432
Browse files Browse the repository at this point in the history
GitHub issue 432
  • Loading branch information
j3-signalroom authored Nov 6, 2024
2 parents 0f1c1d3 + 74e6c6d commit d69bb8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions aws-resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,6 @@ resource "aws_iam_role_policy_attachment" "glue_policy_attachment" {
policy_arn = aws_iam_policy.glue_s3_access_policy.arn
}

resource "aws_glue_catalog_database" "iceberg_db" {
name = "iceberg_database"
}

data "aws_secretsmanager_secret" "admin_public_keys" {
name = "/snowflake_admin_credentials"
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
organization = "signalroom"

workspaces {
name = "apache-flink-kickstarter-0000"
name = "apache-flink-kickstarter-0001"
}
}

Expand Down
3 changes: 3 additions & 0 deletions scripts/run-terraform-locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,7 @@ else
aws secretsmanager delete-secret --secret-id /snowflake_resource/${service_account_user} --force-delete-without-recovery || true
aws secretsmanager delete-secret --secret-id /snowflake_resource/${service_account_user}/rsa_private_key_pem_1 --force-delete-without-recovery || true
aws secretsmanager delete-secret --secret-id /snowflake_resource/${service_account_user}/rsa_private_key_pem_2 --force-delete-without-recovery || true

# Delete the AWS Glue Data Catalog Database, and all associated tables within database will also be deleted
aws glue delete-database --name airlines || true
fi

0 comments on commit d69bb8d

Please sign in to comment.