github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/azure/keyvault/AVD-AZU-0015/Terraform.md (about)

     1  
     2  Provide content type for secrets to aid interpretation on retrieval
     3  
     4  ```hcl
     5   resource "azurerm_key_vault_secret" "good_example" {
     6     name         = "secret-sauce"
     7     value        = "szechuan"
     8     key_vault_id = azurerm_key_vault.example.id
     9     content_type = "password"
    10   }
    11   
    12  ```
    13  
    14  #### Remediation Links
    15   - https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/key_vault_secret#content_type
    16