gpt4 book ai didi

azure - 从 Azure 文件共享获取访问 key - Terraform

转载 作者:行者123 更新时间:2023-12-05 02:55:06 24 4
gpt4 key购买 nike

我正在尝试按照此 Example 通过 terraform 创建 azure 文件共享 ,但是我想获取此存储帐户访问 key 。我如何得到它,对此的任何帮助将不胜感激。

最佳答案

您无法获取 azurerm_storage_share 访问 key ,因为此属性未公开。您需要从 azurerm_storage_account 获取访问 key

代码片段:

data "azurerm_storage_account" "example" {
name = "packerimages"
resource_group_name = "packer-storage"
}

output "storage_account_primary_access_key" {
value = data.azurerm_storage_account.example.primary_access_key
}

此外,在每个组件下,您可以找到在属性引用下公开的属性。

更多信息可以找到here .

关于azure - 从 Azure 文件共享获取访问 key - Terraform,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61487550/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com