Complete the code to specify the source of the module from the organization registry.
module "network" { source = "app.terraform.io/[1]/network/vpc/aws" version = "1.0.0" }
The source attribute uses the organization name to locate the module in the registry.
Complete the code to specify the module version from the registry.
module "database" { source = "app.terraform.io/my-org/db/mysql" version = "[1]" }
The version attribute must be a semantic version string like 1.2.3 to specify the exact module version.
Fix the error in the module source path to correctly reference the organization registry.
module "webserver" { source = "app.terraform.io/my-org/[1]/nginx/aws" version = "2.0.0" }
The module name must match the registry module name, here it is nginx.
Fill both blanks to define a module source with organization and provider correctly.
module "storage" { source = "app.terraform.io/[1]/storage/[2]" version = "1.1.0" }
The source path includes the organization name and the cloud provider as the last part.
Fill all three blanks to define a module source with organization, module name, and provider.
module "cache" { source = "app.terraform.io/[1]/[2]/[3]" version = "3.0.1" }
The source path format is app.terraform.io/organization/module/provider.