diff --git a/main.tf b/main.tf new file mode 100644 index 0000000..b78b876 --- /dev/null +++ b/main.tf @@ -0,0 +1,15 @@ +data "azurerm_resource_group" "terraformstorage" { + name = "DevOpsSecurity" +} + +resource "azurerm_storage_account" "terraformaccount1" { + name = "devopssecurity1" + resource_group_name = data.azurerm_resource_group.terraformstorage.name + location = "Central US" + account_tier = "Standard" + account_replication_type = "GRS" + + enable_https_traffic_only = false + public_network_access_enabled = true + +}