Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

201 configure azure infrastructure #231

Merged
merged 18 commits into from
Jul 25, 2024
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b2aec28
- Update project setup instructions and dependencies
mlhaufe Jul 25, 2024
324a312
Updated azure infra to trigger on workflow dispatch
mlhaufe Jul 25, 2024
38e66ea
Merge branch 'master' into 201-configure-azure-infrastructure
mlhaufe Jul 25, 2024
6e695e5
chore: Update Azure infrastructure workflow to include validation ste…
mlhaufe Jul 25, 2024
794d49e
- Update Azure infrastructure workflow to use latest version of Azure…
mlhaufe Jul 25, 2024
270babd
Merge branch 'master' into 201-configure-azure-infrastructure
mlhaufe Jul 25, 2024
8a4cf61
- Updated action/checkout version
mlhaufe Jul 25, 2024
985a67e
Merge branch '201-configure-azure-infrastructure' of https://github.c…
mlhaufe Jul 25, 2024
25aa326
Merge branch 'master' into 201-configure-azure-infrastructure
mlhaufe Jul 25, 2024
ffcaca5
Updated azure/arm-deploy version
mlhaufe Jul 25, 2024
80b0cae
Merge branch '201-configure-azure-infrastructure' of https://github.c…
mlhaufe Jul 25, 2024
d961496
chore: Verify Resource Group existence in Azure infrastructure workflow
mlhaufe Jul 25, 2024
2d77217
- removed debug step from pipeline
mlhaufe Jul 25, 2024
e0c166f
chore: Comment out unused parameters in Azure infrastructure workflow
mlhaufe Jul 25, 2024
cb71bf6
refactor: Update Azure Bicep resource name parameter
mlhaufe Jul 25, 2024
1f39779
Merge branch 'master' into 201-configure-azure-infrastructure
mlhaufe Jul 25, 2024
effe193
refactor: Update Azure Bicep resource name parameter size
mlhaufe Jul 25, 2024
d59729f
Merge branch 'master' into 201-configure-azure-infrastructure
mlhaufe Jul 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion azure/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ targetScope = 'resourceGroup'
// @allowed(['dev', 'prod'])
// param environment string = 'dev'
param location string = resourceGroup().location
@minLength(3)
@maxLength(22)
param name string = 'cathedral'
// param dockerComposeFile string

// Dummy for testing
resource stg 'Microsoft.Storage/storageAccounts@2023-04-01' = {
name: toLower('st-${name}')
name: toLower('st${name}')
location: location
sku: {
name: 'Standard_LRS'
Expand Down
Loading