Difference between revisions of "Terraform modules: source"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
 
Terraform uses this during the module installation step of <code>[[terraform init]]</code> to download the source code to a directory on local disk so that it can be used by other Terraform commands.
 
Terraform uses this during the module installation step of <code>[[terraform init]]</code> to download the source code to a directory on local disk so that it can be used by other Terraform commands.
  
== Examples ==
+
== Examples in [[main.tf]] ==
 
  module "[[consul]]" {
 
  module "[[consul]]" {
 
   source = "./path/to/you/module"
 
   source = "./path/to/you/module"

Revision as of 14:38, 19 October 2021

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.

Examples in main.tf

module "consul" {
  source = "./path/to/you/module"
}
module "yourmodule" {
  source = "github.com/your-project/terraform-your-templates/modules/yourmodule"
}

Terraform source types

https://www.terraform.io/docs/language/modules/sources.html

Related terms

See also

Advertising: