Skip to content

Commit

Permalink
[Doc] Fix for UC on AWS guide - use `databricks_aws_unity_catalog_ass…
Browse files Browse the repository at this point in the history
…ume_role_policy` where necessary (#4109)

## Changes
<!-- Summary of your changes that are easy to understand -->


Resolves #3964

## Tests
<!-- 
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->

- [ ] `make test` run locally
- [x] relevant change in `docs/` folder
- [ ] covered with integration tests in `internal/acceptance`
- [ ] relevant acceptance tests are passing
- [ ] using Go SDK
  • Loading branch information
alexott authored Oct 21, 2024
1 parent 6f70c73 commit fa3c3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/unity-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ resource "aws_iam_policy" "external_data_access" {
resource "aws_iam_role" "external_data_access" {
name = local.uc_iam_role
assume_role_policy = data.aws_iam_policy_document.this.json
assume_role_policy = data.databricks_aws_unity_catalog_assume_role_policy.this.json
managed_policy_arns = [aws_iam_policy.external_data_access.arn]
tags = merge(var.tags, {
Name = "${local.prefix}-unity-catalog external access IAM role"
Expand Down

0 comments on commit fa3c3de

Please sign in to comment.