Difference between revisions of "Terraform modules"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 35: Line 35:
 
* <code>[[terraform graph]] 2>&1 | grep module | grep "{" |  cut -d"{" -f1</code>
 
* <code>[[terraform graph]] 2>&1 | grep module | grep "{" |  cut -d"{" -f1</code>
 
* <code>[[terraform get -update]] | grep Downloading</code>
 
* <code>[[terraform get -update]] | grep Downloading</code>
 +
 +
== Errors ==
 +
* <code>[[Error: Module not installed]]</code>
 +
* <code>[[Error: Unsupported argument]]</code>
  
 
== Related terms ==
 
== Related terms ==

Revision as of 14:58, 17 March 2023

Modules naming convention: terraform-PROVIDER-NAME

AWS modules

Others

Examples in main.tf

module "consul" {
  source = "./path/to/you/module"
}
module "yourmodule" {
  source = "github.com/your-project/terraform-your-templates/modules/yourmodule"
}
module "ec2_instance" {
  source  = "terraform-aws-modules/ec2-instance/aws"
  version = "~> 3.0"
}
module "your_module" {
  source =  git::[email protected]:your-org/your-project.git?ref=your-branch
}

Related commands

Errors

Related terms

See also

Advertising: