netascode / terraform-aci-nac-aci

Terraform Cisco ACI Nexus-as-Code Module
https://registry.terraform.io/modules/netascode/nac-aci/aci
Apache License 2.0
21 stars 25 forks source link

yamlschema bug - mcp key #152

Open jorgenspange opened 1 month ago

jorgenspange commented 1 month ago

Good day,

When MCP key is defined in locals:

locals {
  model = {
    apic = {
      access_policies = {
        mcp = {
          key = data.azurerm_key_vault_secret.prod-aci-mcp-password.value
        }
      }
    }
  }
}

The yamlschema claims it's missing, which makes sense, but it should be possible to state that's it defined elsewhere somehow: image

Br Jørgen