├── .gitignore ├── LICENSE ├── README.md ├── abbreviations.json ├── ai_ml ├── ai-hub-connection.bicep ├── ai-hub-model-serverless-endpoint.bicep ├── ai-hub-project.bicep ├── ai-hub.bicep ├── ai-search.bicep ├── ai-services.bicep ├── document-intelligence.bicep ├── language.bicep ├── machine-learning-workspace-connection.bicep ├── machine-learning-workspace.bicep ├── models.json └── openai.bicep ├── analytics ├── event-hub-namespace.bicep ├── event-hub.bicep ├── iot-hub-dps.bicep └── iot-hub.bicep ├── bicepconfig.json ├── compute ├── app-service-plan.bicep ├── function-app.bicep ├── static-web-app.bicep └── web-app.bicep ├── containers ├── container-app-dynamic-sessions.bicep ├── container-app.bicep ├── container-apps-environment-dapr-bindings-cron.bicep ├── container-apps-environment-dapr-pubsub-service-bus.bicep ├── container-apps-environment-dapr-secretstores-key-vault.bicep ├── container-apps-environment-storage.bicep ├── container-apps-environment.bicep └── container-registry.bicep ├── databases ├── sql-database.bicep ├── sql-elastic-pool.bicep └── sql-server.bicep ├── failoverregions.json ├── integration ├── api-management-backend.bicep ├── api-management-key-vault-named-value.bicep ├── api-management-named-value.bicep ├── api-management-openapi-api.bicep ├── api-management-policy.bicep ├── api-management-subscription.bicep ├── api-management.bicep └── service-bus-namespace.bicep ├── management_governance ├── application-insights.bicep ├── log-analytics-workspace-summary-log.bicep └── log-analytics-workspace.bicep ├── networking ├── application-gateway.bicep ├── dns-zone.bicep ├── front-door-classic.bicep ├── front-door-endpoint.bicep ├── front-door-origin-group.bicep ├── front-door.bicep ├── network-security-group.bicep ├── public-ip-address.bicep ├── virtual-network-subnet.bicep └── virtual-network.bicep ├── quick-starts ├── ai-content-understanding │ ├── Deploy-Quickstart.ps1 │ ├── README.md │ ├── ai-content-understanding.bicep │ └── ai-content-understanding.bicepparam └── ai-hub-environment │ ├── README.md │ ├── ai-hub-environment.bicep │ └── ai-hub-environment.bicepparam ├── roles.json ├── security ├── key-vault-secret-environment-variables.bicep ├── key-vault-secret.bicep ├── key-vault.bicep ├── managed-identity.bicep ├── resource-group-role-assignment.bicep └── resource-role-assignment.json └── storage ├── storage-account.bicep ├── storage-blob-container.bicep ├── storage-file-service.bicep ├── storage-file-share.bicep ├── storage-queue.bicep └── storage-table.bicep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/README.md -------------------------------------------------------------------------------- /abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/abbreviations.json -------------------------------------------------------------------------------- /ai_ml/ai-hub-connection.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-hub-connection.bicep -------------------------------------------------------------------------------- /ai_ml/ai-hub-model-serverless-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-hub-model-serverless-endpoint.bicep -------------------------------------------------------------------------------- /ai_ml/ai-hub-project.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-hub-project.bicep -------------------------------------------------------------------------------- /ai_ml/ai-hub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-hub.bicep -------------------------------------------------------------------------------- /ai_ml/ai-search.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-search.bicep -------------------------------------------------------------------------------- /ai_ml/ai-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/ai-services.bicep -------------------------------------------------------------------------------- /ai_ml/document-intelligence.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/document-intelligence.bicep -------------------------------------------------------------------------------- /ai_ml/language.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/language.bicep -------------------------------------------------------------------------------- /ai_ml/machine-learning-workspace-connection.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/machine-learning-workspace-connection.bicep -------------------------------------------------------------------------------- /ai_ml/machine-learning-workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/machine-learning-workspace.bicep -------------------------------------------------------------------------------- /ai_ml/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/models.json -------------------------------------------------------------------------------- /ai_ml/openai.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/ai_ml/openai.bicep -------------------------------------------------------------------------------- /analytics/event-hub-namespace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/analytics/event-hub-namespace.bicep -------------------------------------------------------------------------------- /analytics/event-hub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/analytics/event-hub.bicep -------------------------------------------------------------------------------- /analytics/iot-hub-dps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/analytics/iot-hub-dps.bicep -------------------------------------------------------------------------------- /analytics/iot-hub.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/analytics/iot-hub.bicep -------------------------------------------------------------------------------- /bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/bicepconfig.json -------------------------------------------------------------------------------- /compute/app-service-plan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/compute/app-service-plan.bicep -------------------------------------------------------------------------------- /compute/function-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/compute/function-app.bicep -------------------------------------------------------------------------------- /compute/static-web-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/compute/static-web-app.bicep -------------------------------------------------------------------------------- /compute/web-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/compute/web-app.bicep -------------------------------------------------------------------------------- /containers/container-app-dynamic-sessions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-app-dynamic-sessions.bicep -------------------------------------------------------------------------------- /containers/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-app.bicep -------------------------------------------------------------------------------- /containers/container-apps-environment-dapr-bindings-cron.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-apps-environment-dapr-bindings-cron.bicep -------------------------------------------------------------------------------- /containers/container-apps-environment-dapr-pubsub-service-bus.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-apps-environment-dapr-pubsub-service-bus.bicep -------------------------------------------------------------------------------- /containers/container-apps-environment-dapr-secretstores-key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-apps-environment-dapr-secretstores-key-vault.bicep -------------------------------------------------------------------------------- /containers/container-apps-environment-storage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-apps-environment-storage.bicep -------------------------------------------------------------------------------- /containers/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-apps-environment.bicep -------------------------------------------------------------------------------- /containers/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/containers/container-registry.bicep -------------------------------------------------------------------------------- /databases/sql-database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/databases/sql-database.bicep -------------------------------------------------------------------------------- /databases/sql-elastic-pool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/databases/sql-elastic-pool.bicep -------------------------------------------------------------------------------- /databases/sql-server.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/databases/sql-server.bicep -------------------------------------------------------------------------------- /failoverregions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/failoverregions.json -------------------------------------------------------------------------------- /integration/api-management-backend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-backend.bicep -------------------------------------------------------------------------------- /integration/api-management-key-vault-named-value.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-key-vault-named-value.bicep -------------------------------------------------------------------------------- /integration/api-management-named-value.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-named-value.bicep -------------------------------------------------------------------------------- /integration/api-management-openapi-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-openapi-api.bicep -------------------------------------------------------------------------------- /integration/api-management-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-policy.bicep -------------------------------------------------------------------------------- /integration/api-management-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management-subscription.bicep -------------------------------------------------------------------------------- /integration/api-management.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/api-management.bicep -------------------------------------------------------------------------------- /integration/service-bus-namespace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/integration/service-bus-namespace.bicep -------------------------------------------------------------------------------- /management_governance/application-insights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/management_governance/application-insights.bicep -------------------------------------------------------------------------------- /management_governance/log-analytics-workspace-summary-log.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/management_governance/log-analytics-workspace-summary-log.bicep -------------------------------------------------------------------------------- /management_governance/log-analytics-workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/management_governance/log-analytics-workspace.bicep -------------------------------------------------------------------------------- /networking/application-gateway.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/application-gateway.bicep -------------------------------------------------------------------------------- /networking/dns-zone.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/dns-zone.bicep -------------------------------------------------------------------------------- /networking/front-door-classic.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/front-door-classic.bicep -------------------------------------------------------------------------------- /networking/front-door-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/front-door-endpoint.bicep -------------------------------------------------------------------------------- /networking/front-door-origin-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/front-door-origin-group.bicep -------------------------------------------------------------------------------- /networking/front-door.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/front-door.bicep -------------------------------------------------------------------------------- /networking/network-security-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/network-security-group.bicep -------------------------------------------------------------------------------- /networking/public-ip-address.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/public-ip-address.bicep -------------------------------------------------------------------------------- /networking/virtual-network-subnet.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/virtual-network-subnet.bicep -------------------------------------------------------------------------------- /networking/virtual-network.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/networking/virtual-network.bicep -------------------------------------------------------------------------------- /quick-starts/ai-content-understanding/Deploy-Quickstart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-content-understanding/Deploy-Quickstart.ps1 -------------------------------------------------------------------------------- /quick-starts/ai-content-understanding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-content-understanding/README.md -------------------------------------------------------------------------------- /quick-starts/ai-content-understanding/ai-content-understanding.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-content-understanding/ai-content-understanding.bicep -------------------------------------------------------------------------------- /quick-starts/ai-content-understanding/ai-content-understanding.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-content-understanding/ai-content-understanding.bicepparam -------------------------------------------------------------------------------- /quick-starts/ai-hub-environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-hub-environment/README.md -------------------------------------------------------------------------------- /quick-starts/ai-hub-environment/ai-hub-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-hub-environment/ai-hub-environment.bicep -------------------------------------------------------------------------------- /quick-starts/ai-hub-environment/ai-hub-environment.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/quick-starts/ai-hub-environment/ai-hub-environment.bicepparam -------------------------------------------------------------------------------- /roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/roles.json -------------------------------------------------------------------------------- /security/key-vault-secret-environment-variables.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/key-vault-secret-environment-variables.bicep -------------------------------------------------------------------------------- /security/key-vault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/key-vault-secret.bicep -------------------------------------------------------------------------------- /security/key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/key-vault.bicep -------------------------------------------------------------------------------- /security/managed-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/managed-identity.bicep -------------------------------------------------------------------------------- /security/resource-group-role-assignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/resource-group-role-assignment.bicep -------------------------------------------------------------------------------- /security/resource-role-assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/security/resource-role-assignment.json -------------------------------------------------------------------------------- /storage/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-account.bicep -------------------------------------------------------------------------------- /storage/storage-blob-container.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-blob-container.bicep -------------------------------------------------------------------------------- /storage/storage-file-service.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-file-service.bicep -------------------------------------------------------------------------------- /storage/storage-file-share.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-file-share.bicep -------------------------------------------------------------------------------- /storage/storage-queue.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-queue.bicep -------------------------------------------------------------------------------- /storage/storage-table.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmcroft/bicep-templates/HEAD/storage/storage-table.bicep --------------------------------------------------------------------------------