From d623d49e4beae46d783388663f9cebf4045ac122 Mon Sep 17 00:00:00 2001 From: Serveladus Date: Tue, 17 Sep 2024 15:32:19 +0300 Subject: [PATCH] Solution2 --- main.tf | 8 ++++---- outputs.tf | 2 +- variables.tf | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/main.tf b/main.tf index 13d3a10..aa1443f 100644 --- a/main.tf +++ b/main.tf @@ -5,8 +5,8 @@ provider "azurerm" { } module "resource_group_storage" { - source = "./modules/resource_group_storage" - resource_group_name = var.resource_group_name - location = var.location - storage_account_name = var.storage_account_name + source = "./modules/resource_group_storage" + resource_group_name = var.resource_group_name + location = var.location + storage_account_name = var.storage_account_name } diff --git a/outputs.tf b/outputs.tf index a30e3fa..943f1d9 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,3 +1,3 @@ output "resource_group_name" { - value = module.resource_group_storage.resource_group_name + value = module.resource_group_storage.resource_group_name } diff --git a/variables.tf b/variables.tf index 285f06d..b3c33e6 100644 --- a/variables.tf +++ b/variables.tf @@ -1,11 +1,11 @@ variable "resource_group_name" { - type = string + type = string } variable "storage_account_name" { - type = string + type = string } variable "location" { - type = string + type = string }