Difference between revisions of "Terraform modules"

From wikieduonline
Jump to navigation Jump to search
Line 52: Line 52:
 
* [[Still destroying]]
 
* [[Still destroying]]
 
* [[Learn-terraform-provision-eks-cluster: terraform providers]]
 
* [[Learn-terraform-provision-eks-cluster: terraform providers]]
 +
* <code>[[.terraform/modules/]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 19:15, 27 October 2022

Modules naming convention: terraform-PROVIDER-NAME

Modules

https://registry.terraform.io/namespaces/terraform-aws-modules

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"
}

Related commands

terraform graph 2>&1 | grep module | grep "{" |  cut -d"{" -f1
terraform get -update | grep Downloading

Related terms

See also

Advertising: