Difference between revisions of "Terraform modules"
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
Contents
AWS modules
Hashicorp modules
hashicorp/random
hashicorp/template
(deprecated)
Others
module "vm"
(Terraform Libvirt module: https://registry.terraform.io/modules/MonolithProjects/vm/libvirt/latest)
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 providers
terraform init
terraform init -upgrade
terraform get
terraform get -update
terraform graph 2>&1 | grep module | grep "{" | cut -d"{" -f1
terraform get -update | grep Downloading
Related terms
- Terraform modules: source
- Ansible modules
- Terraform resources
- Provider (Terraform):
aws
Error: Module not installed
- Terraform registry: https://registry.terraform.io/browse/modules
- AWS CloudFormation modules (Nov 2020)
?ref=XXXX
- Child modules: https://www.terraform.io/language/modules#child-modules
- Still destroying
- Learn-terraform-provision-eks-cluster: terraform providers
.terraform/modules/
See also
Advertising: