Difference between revisions of "Terraform modules: source"

From wikieduonline
Jump to navigation Jump to search
Line 15: Line 15:
  
 
== Source types ==
 
== Source types ==
* Local paths
+
* [[Local paths]]
* Terraform Registry
+
* [[Terraform Registry]]
* GitHub
+
* [[GitHub]]
* Bitbucket
+
* [[Bitbucket]]
* Generic Git, Mercurial repositories
+
* [[Generic Git]], [[Mercurial repositories]]
* HTTP URLs
+
* [[HTTP URLs]]
* S3 buckets
+
* [[S3 buckets]]
 
* [[GCS]] buckets
 
* [[GCS]] buckets
 
  
 
== Related terms ==
 
== Related terms ==

Revision as of 13:43, 8 September 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.


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


Source types

Related terms

See also

Advertising: