terraform init is like npm install — it reads the dependency manifest and downloads everything needed before you can run the project.
terraform init reads the required_providers block, downloads the azurerm provider, and installs module sources from the Terraform Registry.
$ terraform init Initializing the backend... Successfully configured the backend "azurerm"! Initializing provider plugins... - Finding hashicorp/azurerm versions matching "~> 3.110"... - Installing hashicorp/azurerm v3.114.0... - Installed hashicorp/azurerm v3.114.0 (signed by HashiCorp) Initializing modules... - module.network in .terraform/modules/network - module.app_service in modules/app_service Terraform has been successfully initialized!
terraform init is like npm install — it reads the dependency manifest and downloads everything needed before you can run the project.
terraform init reads the required_providers block, downloads the azurerm provider, and installs module sources from the Terraform Registry.
$ terraform init Initializing the backend... Successfully configured the backend "azurerm"! Initializing provider plugins... - Finding hashicorp/azurerm versions matching "~> 3.110"... - Installing hashicorp/azurerm v3.114.0... - Installed hashicorp/azurerm v3.114.0 (signed by HashiCorp) Initializing modules... - module.network in .terraform/modules/network - module.app_service in modules/app_service Terraform has been successfully initialized!
Sign in to cast your vote
Sign in to share your feedback and join the discussion.