Skip to content

Commit fa3c3de

Browse files
authored
[Doc] Fix for UC on AWS guide - use databricks_aws_unity_catalog_assume_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
1 parent 6f70c73 commit fa3c3de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/unity-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ resource "aws_iam_policy" "external_data_access" {
262262
263263
resource "aws_iam_role" "external_data_access" {
264264
name = local.uc_iam_role
265-
assume_role_policy = data.aws_iam_policy_document.this.json
265+
assume_role_policy = data.databricks_aws_unity_catalog_assume_role_policy.this.json
266266
managed_policy_arns = [aws_iam_policy.external_data_access.arn]
267267
tags = merge(var.tags, {
268268
Name = "${local.prefix}-unity-catalog external access IAM role"

0 commit comments

Comments
 (0)