interim put

This commit is contained in:
Tom Archer 2024-10-31 19:03:52 -07:00
parent 9b1c5ecc01
commit 42dc6ee08b

View File

@ -15,6 +15,23 @@ resource "random_string" "azurerm_data_factory" {
upper = false upper = false
} }
resource "random_string" "azurerm_storage_account" {
length = 13
lower = true
numeric = false
special = false
upper = false
}
resource "azurerm_storage_account" "example" {
name = random_string.azurerm_storage_account.result
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
account_tier = "Standard"
account_replication_type = "LRS"
}
resource "azurerm_data_factory" "example" { resource "azurerm_data_factory" "example" {
name = random_string.azurerm_data_factory.result name = random_string.azurerm_data_factory.result
location = azurerm_resource_group.rg.location location = azurerm_resource_group.rg.location