Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for [Data Share] #6480

Closed
yupwei68 opened this issue Apr 15, 2020 · 2 comments · Fixed by #6575, #6789, #7107, #7511 or #7840
Closed

Support for [Data Share] #6480

yupwei68 opened this issue Apr 15, 2020 · 2 comments · Fixed by #6575, #6789, #7107, #7511 or #7840

Comments

@yupwei68
Copy link
Contributor

yupwei68 commented Apr 15, 2020

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

With Azure Data Share service, you can share data without exchanging credentials between data provider and consumer.

New or Affected Resource(s)

  • azurerm_data_share_account
  • azurerm_data_share
  • azurerm_data_share_blob_storage_dataset
  • azurerm_data_share_data_lake_gen1_dataset
  • azurerm_data_share_data_lake_gen2_dataset
  • azurerm_data_share_kusto_cluster_dataset
  • azurerm_data_share_kusto_database_dataset
  • azurerm_data_share_invitation
  • azurerm_data_share_share_subscription
  • azurerm_data_share_blob_storage_dataset_mapping
  • azurerm_data_share_data_lake_gen2_dataset_mapping
  • azurerm_data_share_trigger

image

Potential Terraform Configuration

resource "azurerm_data_share_account" "example" {
  name                = "example-dsa"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name

  identity {
    type = "SystemAssigned"
  }

  tags = {
    foo = "bar"
  }
}

References

@ghost
Copy link

ghost commented May 8, 2020

This has been released in version 2.9.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example:

provider "azurerm" {
    version = "~> 2.9.0"
}
# ... other configuration ...

@ghost
Copy link

ghost commented Jun 4, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!

@ghost ghost locked and limited conversation to collaborators Jun 4, 2020
WodansSon pushed a commit that referenced this issue Jul 22, 2020
* split resource

* update

* update
katbyte pushed a commit that referenced this issue Jul 24, 2020
Partially fix #6480

Sub PR of : #7064

=== RUN TestAccDataSourceAzureRMDataShareDatasetDataLakeGen1_basic
=== PAUSE TestAccDataSourceAzureRMDataShareDatasetDataLakeGen1_basic
=== CONT TestAccDataSourceAzureRMDataShareDatasetDataLakeGen1_basic
--- PASS: TestAccDataSourceAzureRMDataShareDatasetDataLakeGen1_basic (369.62s)
katbyte pushed a commit that referenced this issue Sep 11, 2020
katbyte pushed a commit that referenced this issue Sep 19, 2020
…8464)

Partially fix #6480

Sub PR of : #7064

=== RUN TestAccAzureRMDataShareKustoClusterDataSet_basic
--- PASS: TestAccAzureRMDataShareKustoClusterDataSet_basic (1636.17s)
=== RUN TestAccAzureRMDataShareKustoClusterDataSet_requiresImport
--- PASS: TestAccAzureRMDataShareKustoClusterDataSet_requiresImport (1653.75s)

=== RUN TestAccDataSourceAzureRMDataShareKustoClusterDataset_basic
=== PAUSE TestAccDataSourceAzureRMDataShareKustoClusterDataset_basic
=== CONT TestAccDataSourceAzureRMDataShareKustoClusterDataset_basic
--- PASS: TestAccDataSourceAzureRMDataShareKustoClusterDataset_basic (1517.13s)
katbyte pushed a commit that referenced this issue Nov 9, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.