원클릭으로
kickstart-bicep-authoring
Writing idiomatic, safe, and reviewable Bicep templates for Azure resources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Writing idiomatic, safe, and reviewable Bicep templates for Azure resources.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
ACR integration for AKS Automatic. Teaches attaching an ACR, image reference conventions (digest pinning, no :latest), and pull-secret-free authentication via the managed identity.
Non-blocking cluster status peek — run at the end of Phases 3, 4, 5 to check AKS provisioning progress without hanging.
Voice, tone, and interaction patterns for Kickstart agents.
Configure Infrastructure phase playbook — launch the dedicated Kickstart cluster-setup view, which collects and creates the Azure resources (subscription, resource group, AKS Automatic cluster, ACR) and hands the results back to the chat.
Deploy phase playbook — build, push, apply with Azure CLI and kubectl.
Design phase playbook — propose target architecture on AKS Automatic.
| name | kickstart-bicep-authoring |
| description | Writing idiomatic, safe, and reviewable Bicep templates for Azure resources. |
| disable-model-invocation | true |
Bicep is the preferred IaC language for Azure deployments in Kickstart.
// Parameters first
param location string = resourceGroup().location
param name string
// Variables derived from params
var uniqueSuffix = uniqueString(resourceGroup().id)
// Resources
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
name: '${name}${uniqueSuffix}'
location: location
sku: { name: 'Standard_LRS' }
kind: 'StorageV2'
}
// Outputs last
output accountName string = storageAccount.name
output primaryEndpoint string = storageAccount.properties.primaryEndpoints.blob
@2023-01-01 not @latest.uniqueString() for globally unique names — storage accounts, key vaults, ACR.existing resources — reference resources not managed by this template with existing.Always call azure.validate_bicep before presenting a template to the user. Fix all errors; warnings are acceptable if explained.
minimalTlsVersion: '1.2'.0.0.0.0/0 inbound rules without explicit user approval.