Compare commits
1 Commits
master
...
UserStory3
Author | SHA1 | Date | |
---|---|---|---|
![]() |
42dc6ee08b |
@ -15,6 +15,23 @@ resource "random_string" "azurerm_data_factory" {
|
||||
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" {
|
||||
name = random_string.azurerm_data_factory.result
|
||||
location = azurerm_resource_group.rg.location
|
||||
|
Loading…
x
Reference in New Issue
Block a user