Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Walkthrough updates
Browse files Browse the repository at this point in the history
ckittel authored Oct 29, 2024
1 parent 351b23d commit 5881568
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -107,8 +107,6 @@ Follow these instructions to deploy this example to your Azure subscription, try

- The [OpenSSL CLI](https://docs.openssl.org/3.3/man7/ossl-guide-introduction/#getting-and-installing-openssl) installed.

- The [az Bicep tools installed](https://learn.microsoft.com/azure/azure-resource-manager/bicep/install)

### 1. :rocket: Deploy the infrastructure

The following steps are required to deploy the infrastructure from the command line.
1 change: 1 addition & 0 deletions infra-as-code/bicep/acr.bicep
Original file line number Diff line number Diff line change
@@ -71,6 +71,7 @@ resource acrResource 'Microsoft.ContainerRegistry/registries@2023-07-01' = {
os: 'Linux'
count: 1
virtualNetworkSubnetResourceId: vnet::buildAgentSubnet.id
tier: 'S1'
}
}
}
6 changes: 5 additions & 1 deletion infra-as-code/bicep/openai.bicep
Original file line number Diff line number Diff line change
@@ -192,11 +192,15 @@ resource openaiPrivateEndpoint 'Microsoft.Network/privateEndpoints@2022-11-01' =
groupIds: [
'account'
]
privateLinkServiceId: openAiAccount.id // TODO (P3): Occasionally, the deployment dies here because the Azure OpenAI service isn't actually done deploying, but the resource provider says it is. Not sure how to address.
privateLinkServiceId: openAiAccount.id
}
}
]
}
dependsOn: [
openAiAccount::blockingFilter
openAiAccount::gpt35
]
}

resource openaiDnsZone 'Microsoft.Network/privateDnsZones@2024-06-01' = {

0 comments on commit 5881568

Please sign in to comment.