Difference between revisions of "Terraform modules"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
 
* <code>[[hashicorp/random]]</code>
 
* <code>[[hashicorp/random]]</code>
 
* <code>[[hashicorp/template]]</code> (deprecated)
 
* <code>[[hashicorp/template]]</code> (deprecated)
 +
 +
== Others ==
 +
* <code>module "vm"</code> ([[Terraform Libvirt module]]: https://registry.terraform.io/modules/MonolithProjects/vm/libvirt/latest)
  
 
== Examples in [[main.tf]] ==
 
== Examples in [[main.tf]] ==

Revision as of 19:30, 27 October 2022

Modules naming convention: terraform-PROVIDER-NAME

AWS modules

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

Related commands

Related terms

See also

Advertising: