Difference between revisions of "Terraform providers: provider"

From wikieduonline
Jump to navigation Jump to search
Line 40: Line 40:
 
* [[Terraform associate]]: Handle Terraform and [[Terraform provider|provider installation]] and versioning
 
* [[Terraform associate]]: Handle Terraform and [[Terraform provider|provider installation]] and versioning
 
* <code>[[terraform init]] and [[terraform init -upgrade]]</code>
 
* <code>[[terraform init]] and [[terraform init -upgrade]]</code>
 +
* [[Multiple providers]]
  
 
== See also ==
 
== See also ==

Revision as of 05:04, 21 February 2022

https://www.terraform.io/docs/language/providers/configuration.html


List of some terraform providers: [1]

Use: terraform providers command to list providers used in your main.tf file

Terraform Libvirt module

provider "libvirt" {
  uri = "qemu:///system"
}

Terraform provider: AWS

provider "aws" {
 version = "~> 3.38.0"
 region = "us-west-2"
 profile = "your_profile_name"
}

Related terms

See also

  • https://www.terraform.io/docs/providers/index.html
  • https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs
  • Advertising: