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

Update provider version of azurerm to v4 #11

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions code/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ botbuilder-integration-aiohttp~=4.16.1
openai~=1.42.0
opentelemetry-instrumentation-aiohttp-client~=0.47b0
opentelemetry-instrumentation-aiohttp-server~=0.47b0
pydantic~=2.7.0
pydantic-settings~=2.2.1
pydantic~=2.8.2
pydantic-settings~=2.4.0
5 changes: 3 additions & 2 deletions code/infra/aoai.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ resource "azurerm_cognitive_deployment" "cognitive_deployment_gpt_4o" {
name = "gpt-4o"
version = "2024-05-13"
}
scale {
sku {
capacity = 100
type = "Standard"
name = "Standard"
}
version_upgrade_option = "OnceNewDefaultVersionAvailable"
}
3 changes: 1 addition & 2 deletions code/infra/providers.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
provider "azurerm" {
disable_correlation_request_id = false
environment = "public"
skip_provider_registration = false
storage_use_azuread = true
# use_oidc = true

resource_provider_registrations = "core"
resource_provider_registrations = "none"
resource_providers_to_register = [
"Microsoft.Authorization",
"Microsoft.BotService",
Expand Down
Loading