<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: &amp;quot; Please migrate to `databricks_group_role` &amp;quot; in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/quot-please-migrate-to-databricks-group-role-quot/m-p/9931#M5205</link>
    <description>&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I opened a support case a couple of months ago specifically about this. The answer I got was&lt;/P&gt;&lt;P&gt;"Terraform team will revert the deprecated resource and update the document accordingly.", &lt;/P&gt;&lt;P&gt;which has not happened so far. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either provide documentation on how to implement the feature provided by databricks_group_instance_profile or remove the deprecation warning. More importantly, not to proceed to actually deprecate without replacement solution. We'll otherwise be stuck with older provider versions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. Tibebe&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 13:56:32 GMT</pubDate>
    <dc:creator>TMD</dc:creator>
    <dc:date>2023-02-13T13:56:32Z</dc:date>
    <item>
      <title>" Please migrate to `databricks_group_role` "</title>
      <link>https://community.databricks.com/t5/data-engineering/quot-please-migrate-to-databricks-group-role-quot/m-p/9930#M5204</link>
      <description>&lt;P&gt;With Databricks Terraform connector version 1.2.0, I use the following to make the AWS instance profile available to all users in the workspace:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;// Create AWS instance profile&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;resource "aws_iam_instance_profile" "this" {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;name = "${var.prefix}_instance_profile"&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;role = aws_iam_role.instance_profile.name&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;tags = var.tags&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;}&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;// Create instance profile&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;resource "databricks_instance_profile" "this" {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;provider&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= databricks.workspace&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;instance_profile_arn&amp;nbsp;&amp;nbsp;&amp;nbsp;= aws_iam_instance_profile.this.arn&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;}&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;// Make instance profile available to all users&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;data "databricks_group" "workspace_users" {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;provider&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= databricks.workspace&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;display_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= "users"&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;}&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;resource "databricks_group_instance_profile" "all" {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;provider&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= databricks.workspace&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;group_id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= data.databricks_group.workspace_users.id&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&amp;nbsp;instance_profile_id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= databricks_instance_profile.this.id&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;}&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When upgrading from connector version 1.2.0 to 1.9.2, and am getting this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Warning: Deprecated Resource&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│ &lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│&amp;nbsp;&amp;nbsp;with module.test1_workspace_config.databricks_group_instance_profile.all,&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│&amp;nbsp;&amp;nbsp;on ../../modules/databricks/workspace_config/main.tf line 148, in resource "databricks_group_instance_profile" "all":&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│&amp;nbsp;148: resource "databricks_group_instance_profile" "all" {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│ &lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;│ Please migrate to `databricks_group_role`&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 1.9.2 Databricks Terraform docs are at &lt;A href="https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/group_role" target="test_blank"&gt;https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/group_role&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the docs still say to use &lt;B&gt;databricks_group_instance_profile&lt;/B&gt;, and do not explain how the upgrade could be made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how I'm supposed to use &lt;B&gt;databricks_group_role?&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Digging through &lt;A href="https://github.com/databricks/terraform-provider-databricks/blob/master/CHANGELOG.md" alt="https://github.com/databricks/terraform-provider-databricks/blob/master/CHANGELOG.md" target="_blank"&gt;release notes&lt;/A&gt;, &lt;B&gt;databricks_group_instance_profile&lt;/B&gt; got deprecated in 1.8.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 17:05:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/quot-please-migrate-to-databricks-group-role-quot/m-p/9930#M5204</guid>
      <dc:creator>Andrei_Radulesc</dc:creator>
      <dc:date>2023-02-06T17:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: " Please migrate to `databricks_group_role` "</title>
      <link>https://community.databricks.com/t5/data-engineering/quot-please-migrate-to-databricks-group-role-quot/m-p/9931#M5205</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I opened a support case a couple of months ago specifically about this. The answer I got was&lt;/P&gt;&lt;P&gt;"Terraform team will revert the deprecated resource and update the document accordingly.", &lt;/P&gt;&lt;P&gt;which has not happened so far. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either provide documentation on how to implement the feature provided by databricks_group_instance_profile or remove the deprecation warning. More importantly, not to proceed to actually deprecate without replacement solution. We'll otherwise be stuck with older provider versions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. Tibebe&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 13:56:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/quot-please-migrate-to-databricks-group-role-quot/m-p/9931#M5205</guid>
      <dc:creator>TMD</dc:creator>
      <dc:date>2023-02-13T13:56:32Z</dc:date>
    </item>
  </channel>
</rss>

