Created
November 19, 2022 12:08
-
-
Save rollendxavier/7bf1428ca00312c5ffb5c7c849e2b9ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| backend "azurerm" {} | |
| } | |
| provider "azurerm" { | |
| features {} | |
| } | |
| module "network" { | |
| source = "./modules/network" | |
| resource_location = var.resource_location | |
| resource_group_name = var.resource_group_name | |
| environment_tag = var.environment_tag | |
| vnet_name = var.vnet_name | |
| vnet_cidr = var.vnet_cidr | |
| } | |
| module "database" { | |
| source = "./modules/database" | |
| resource_location = var.resource_location | |
| resource_group_name = var.resource_group_name | |
| environment_tag = var.environment_tag | |
| subnet_id = module.network.subnet_id | |
| depends_on = [ | |
| module.network | |
| ] | |
| } | |
| module "web_app" { | |
| source = "./modules/web_app" | |
| resource_location = var.resource_location | |
| resource_group_name = var.resource_group_name | |
| environment_tag = var.environment_tag | |
| subnet_id = module.network.subnet_id | |
| depends_on = [ | |
| module.network, module.database | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment