Skip to content

Commit

Permalink
Solution2
Browse files Browse the repository at this point in the history
  • Loading branch information
Serveladik committed Sep 17, 2024
1 parent 3ef1c77 commit d623d49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
output "resource_group_name" {
value = module.resource_group_storage.resource_group_name
value = module.resource_group_storage.resource_group_name
}
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit d623d49

Please sign in to comment.