Skip to content

Commit

Permalink
skip: update CI 300
Browse files Browse the repository at this point in the history
  • Loading branch information
vit-corp committed Oct 1, 2024
1 parent d56c44b commit a7666ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions auto_policy_testing/red/sql/sql_server.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ resource "azurerm_mssql_server" "this" {
minimum_tls_version = "1.1"

tags = module.naming.default_tags

timeouts {
create = "2h"
delete = "2h"
}
}

resource "azurerm_mssql_firewall_rule" "this" {
Expand Down
9 changes: 8 additions & 1 deletion auto_policy_testing/red/storage/storage_account.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
resource "azurerm_resource_group" "this" {
name = "${module.naming.resource_prefix.resourcegroup}"
location = "eastus"

tags = module.naming.default_tags
}

resource "azurerm_storage_account" "this" {
name = "${module.naming.resource_prefix.storage}storage${random_integer.this.result}"
location = "eastus" #this option required for 291 policy
resource_group_name = data.terraform_remote_state.common.outputs.resource_group
resource_group_name = azurerm_resource_group.this.name
account_tier = "Standard"
account_replication_type = "LRS"
enable_https_traffic_only = false
Expand Down

0 comments on commit a7666ad

Please sign in to comment.