Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Sep 12, 2024
1 parent 3149213 commit 9c00ddf
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
id: fa
with:
respect-funcignore: true
app-name: pontozo-api-tf
app-name: pontozo-api
package: packages/functions
publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }}

Expand Down
20 changes: 20 additions & 0 deletions infra/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.1"
version = ">=3.96.0"
}
azapi = {
source = "azure/azapi"
Expand Down
16 changes: 8 additions & 8 deletions infra/redis.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
resource "azurerm_redis_cache" "redis-cache" {
name = "pontozo-cache"
location = azurerm_resource_group.pontozo-rg.location
resource_group_name = azurerm_resource_group.pontozo-rg.name
capacity = 0
family = "C"
sku_name = "Basic"
non_ssl_port_enabled = false
minimum_tls_version = "1.2"
name = "pontozo-cache"
location = azurerm_resource_group.pontozo-rg.location
resource_group_name = azurerm_resource_group.pontozo-rg.name
capacity = 0
family = "C"
sku_name = "Basic"
enable_non_ssl_port = false
minimum_tls_version = "1.2"
}

0 comments on commit 9c00ddf

Please sign in to comment.