Skip to content

Commit

Permalink
Merge pull request #5 from ARPA-H/avdaccelerator-MCS
Browse files Browse the repository at this point in the history
Initial ISD/MCS Work
  • Loading branch information
petersonjdNIH authored Mar 18, 2024
2 parents 33f1680 + cf95777 commit 98c6676
Show file tree
Hide file tree
Showing 3 changed files with 1,512 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy Bicep file

on:
workflow_dispatch:

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:

- name: Checkout code
uses: actions/checkout@main

- name: Log into Azure
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Deploy Bicep file
uses: azure/arm-deploy@v1
with:
scope: subscription
subscriptionId: ${{ secrets.AZURE_SUBSCRIPTION }}
region: eastus
template: ./workload/bicep/deploy-baseline.bicep
parameters: ./workload/bicep/parameters/deploy-baseline-parameters-example.json avdWorkloadSubsId=${{ secrets.AZURE_SUBID_TEST}} deploymentPrefix=AVDN avdVmLocalUserName=${{ secrets.AVD_ADMIN }} avdVmLocalUserPassword=${{ secrets.ADMINPASS }} avdIdentityServiceProvider=EntraID avdEnterpriseAppObjectId=${{ secrets.AZURE_AVD_OBJECTID }} avdDeployMonitoring=true createAvdVnet=false createAvdFslogixDeployment=true deployAlaWorkspace=true avdSessionHostLocation=eastus2 avdManagementPlaneLocation=eastus2 existingVnetAvdSubnetResourceId=${{ secrets.AZURE_VPCSUBID_TEST }} existingVnetPrivateEndpointSubnetResourceId=${{ secrets.AZURE_VPCSUBID_TEST }} deployPrivateEndpointKeyvaultStorage=true createPrivateDnsZones=true
failOnStdErr: false
Loading

0 comments on commit 98c6676

Please sign in to comment.