Skip to content

Commit

Permalink
skip: update CI 70
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Jul 5, 2024
1 parent 3850ebe commit e407137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auto_policy_testing/green/webapp/web_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "azurerm_linux_web_app" "this" {
command = "az webapp config set -g $resourceGroup -n $resourceName --min-tls-version '1.3'"

environment = {
resource_group_name = data.terraform_remote_state.common.outputs.resource_group
resource_group_name = "${data.terraform_remote_state.common.outputs.resource_group}"
resourceName = "${module.naming.resource_prefix.webapp}-linux"
}
}
Expand Down
2 changes: 1 addition & 1 deletion auto_policy_testing/red/storage/storage_account.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "azurerm_storage_account" "this" {
name = "${module.naming.resource_prefix.storage}storage${random_integer.this.result}"
location = data.terraform_remote_state.common.outputs.location
location = "eastus"
resource_group_name = data.terraform_remote_state.common.outputs.resource_group
account_tier = "Standard"
account_replication_type = "LRS"
Expand Down

0 comments on commit e407137

Please sign in to comment.