terraform modules: source

From wikieduonline
Revision as of 07:10, 20 September 2021 by Welcome (talk | contribs) (Welcome moved page Source (Terraform modules) to Terraform modules: source)
Jump to navigation Jump to search

The source argument in a module block tells Terraform where to find the source code for the desired child module.

  • source = "terraform-aws-modules/ec2-instance/aws"

Terraform uses this during the module installation step of terraform init to download the source code to a directory on local disk so that it can be used by other Terraform commands.


module "consul" {
  source = "./path/to/you/module"
}



Terraform source types

Related terms

See also

Advertising: