有什么方法可以在现有存储帐户 blob 中自动创建 ACL?
Is there any way to automate the ACL creation inside existing storage account blob?
我们的 Azure 存储帐户 Genv2 启用了 Datalake Genv2 功能,需要根据及时的要求在容器内创建 blob,并为一组具有不同访问级别的服务原则分配一组“访问控制列表” .正在寻找 terraform 的解决方案,但找不到任何有用的文章。
要求如下。
- 读取现有的存储帐户信息(其中已经创建了一些使用某些访问策略的 blob)
- 在该存储帐户中创建新的 blob,并为具有不同类型访问权限(如读取、写入)的服务主体列表分配一组访问控制
- 应该能够修改现有 blob 中的现有访问控制列表。
非常感谢任何帮助..
The Storage account is enabled with Datalake Gen v2 feature and
requirement is to create and manage access control list of the blob
containers inside them. I modified the question above with the same
information. Will terraform will help on the above, if not, ARM can
help ?
无法使用 Terraform 或 ARM 模板 到 set/get ACL's
。您可以根据您的要求使用 Azure SDK 的 Microsoft Documentation Microsoft Documentation。
我们的 Azure 存储帐户 Genv2 启用了 Datalake Genv2 功能,需要根据及时的要求在容器内创建 blob,并为一组具有不同访问级别的服务原则分配一组“访问控制列表” .正在寻找 terraform 的解决方案,但找不到任何有用的文章。
要求如下。
- 读取现有的存储帐户信息(其中已经创建了一些使用某些访问策略的 blob)
- 在该存储帐户中创建新的 blob,并为具有不同类型访问权限(如读取、写入)的服务主体列表分配一组访问控制
- 应该能够修改现有 blob 中的现有访问控制列表。 非常感谢任何帮助..
The Storage account is enabled with Datalake Gen v2 feature and requirement is to create and manage access control list of the blob containers inside them. I modified the question above with the same information. Will terraform will help on the above, if not, ARM can help ?
无法使用 Terraform 或 ARM 模板 到 set/get ACL's
。您可以根据您的要求使用 Azure SDK 的 Microsoft Documentation Microsoft Documentation。