-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstorage_account.tf
40 lines (33 loc) · 1.33 KB
/
storage_account.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Storage Accounts
resource "azurerm_storage_account" "pgsql" {
count = (var.diagnostics != null) && var.kv_pointer_enable ? 0 : 1
name = var.storage_account_name != null ? var.storage_account_name : substr("${replace(var.name, "-", "")}pgsql", 0, 24)
location = var.location
resource_group_name = var.resource_group
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "LRS"
access_tier = "Hot"
enable_https_traffic_only = true
allow_blob_public_access = false
min_tls_version = "TLS1_2"
network_rules {
default_action = var.vnet_create == null ? "Allow" : "Deny"
ip_rules = var.ip_rules
virtual_network_subnet_ids = var.vnet_create == null ? [] : [var.vnet_create ? azurerm_subnet.pgsql[0].id : data.azurerm_subnet.pgsql[0].id]
bypass = ["AzureServices"]
}
tags = var.tags
lifecycle {
ignore_changes = [
name,
tags
]
}
}
resource "azurerm_storage_container" "pgsql" {
count = (var.diagnostics != null) && var.kv_pointer_enable ? 0 : 1
name = "${replace(var.name, "-", "")}pgsql"
storage_account_name = azurerm_storage_account.pgsql[count.index].name
container_access_type = "private"
}