# SNFR26 - Output - Parameters - Decorators Module Specification for the Azure Verified Modules (AVM) program ID: SNFR26 - Output-Parameters - Decorators Output parameters MUST implement: Decorators in Bicep such as description & secure (if sensitive) Arguments in Terraform such as description & sensitive (if sensitive) Output parameters Bicep Terraform @description('The resourceId of your resource.') output sampleResourceId string = sampleResource.id @description('The key of your resource.') @secure() output sampleResourceKey string = sampleResource.key # Resource output output "foo" { description = "MyResource foo attribute" value = azurerm_resource_myresource.foo } # Output of a sensitive attribute output "bar" { description = "MyResource bar attribute" value = azurerm_resource_myresource.bar sensitive = true } --- Source: https://raw.githubusercontent.com/Azure/Azure-Verified-Modules/refs/heads/main/docs/content/specs-defs/includes/shared/shared/non-functional/SNFR26.md Last Modified: 0001-01-01