Bicep

1 program Added 2025-02-07T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 5959e95af9 · authored 2026-02-07T19:39:14+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/bicep
LLM (this repo) · 1Linguist

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.biceplinguistprimary117.5K files
.bicepparamlinguistsecondary423 files

Related languages

BitC (0.18)Birch (0.17)Birl (0.17)Blimp (0.17)Sleep (0.17)

LLM-contributed programs

Azure Storage Account

Provenance: commit 5959e95af9 · authored 2026-02-07T19:39:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bicep · license: MIT · added: 2025-02-07T12:00:00Z
param location string = resourceGroup().location
param storageAccountName string

resource storageAccount 'Microsoft.Storage/storageAccounts@2021-09-01' = {
  name: storageAccountName
  location: location
  sku: {
    name: 'Standard_LRS'
  }
  kind: 'StorageV2'
  properties: {
    accessTier: 'Hot'
    supportsHttpsTrafficOnly: true
  }
}

output storageAccountId string = storageAccount.id
output primaryEndpoints object = storageAccount.properties.primaryEndpoints

Real programs from Software Heritage

1 sample mined from derived_datasets/<date>/contents/*.parquet, byte-verified against the SWH archive. Citation-grade qualified SWHIDs preserved.
main-with-getsecret-function.bicep · 865 B · ext .bicep · seen 8× in SWH
via unique-primary
swh:1:cnt:fc08ea59de59ecd53930005a541ac20a96c348dc;origin=https://github.com/fberson/Getting-started-with-Bicep-Infrastructure-as-code-on-Azure;anchor=swh:1:rev:cba41aee1423902663aeda9cc31bc53bfb46f80f;path=/Samples/main-with-getsecret-function.bicep
Open in SWH · Raw bytes (SWH) · GitHub raw
Show source
targetScope = 'subscription'

param resourceGroupName string = 'my-rg'
param storageAccountName string
param containerName string
param keyVaultName string
param keyVaultSubscription string
param keyVaultResourceGroup string
param secretName string
param secretVersion string

resource rg 'Microsoft.Resources/resourceGroups@2021-01-01' = {
  name: resourceGroupName
  location: 'westeurope'
}

resource sa 'Microsoft.Storage/storageAccounts@2021-02-01' existing = {
  name: storageAccountName
  scope: rg
}

resource kv 'Microsoft.KeyVault/vaults@2019-09-01' existing = {
  name: keyVaultName
  scope: resourceGroup(keyVaultSubscription, keyVaultResourceGroup)
}

module co 'container.bicep' = {
  scope: rg
  name: 'sa'
  params: {
    containerName: containerName
    storageAccountName: sa.name
    secretMetadata: kv.getSecret(secretName, secretVersion)
  }
}

Contribute — propose a file extension

Tell us where to find evidence about Bicep (mapped to pl/bicep). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Bicep/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BibTeX Style Bidiroop →