data-partition terraform unsupported attribute error for resource "azurerm_key_vault_secret" "storage_account_blob_endpoint"
I have an error when following the manual install of the azure infrastructure.
The issue appears when running terraform plan
for the data-partition
as described here.
https://community.opengroup.org/osdu/platform/deployment-and-operations/infra-azure-provisioning/-/blob/master/infra/templates/osdu-r3-mvp/data_partition/README.md
terraform plan -var-file custom.tfvars
╷
│ Warning: Deprecated attribute
│
│ on ../../../modules/providers/azure/aks/main.tf line 169, in resource "azurerm_kubernetes_cluster" "main":
│ 169: addon_profile[0].oms_agent[0].log_analytics_workspace_id
│
│ The attribute "log_analytics_workspace_id" is deprecated. Refer to the provider documentation for details.
│
│ (and one more similar warning elsewhere)
╵
╷
│ Warning: Argument is deprecated
│
│ with module.service_bus.azurerm_servicebus_namespace_authorization_rule.main,
│ on ../../../modules/providers/azure/service-bus/main.tf line 144, in resource "azurerm_servicebus_namespace_authorization_rule" "main":
│ 144: namespace_name = azurerm_servicebus_namespace.main.name
│
│ Deprecated in favor of "namespace_id"
│
│ (and 18 more similar warnings elsewhere)
╵
╷
│ Error: Unsupported attribute
│
│ on secrets.tf line 103, in resource "azurerm_key_vault_secret" "storage_account_blob_endpoint":
│ 103: value = module.storage_account.endpoint
│ ├────────────────
│ │ module.storage_account is a object
│
│ This object does not have an attribute named "endpoint".
Edited by Fabien Bosquet