Difference between revisions of "Terraform providers: provider"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
  
 
List of [[terraform]] providers: <ref>https://www.terraform.io/docs/providers/index.html</ref>
 
List of [[terraform]] providers: <ref>https://www.terraform.io/docs/providers/index.html</ref>
 
 
*<code>provider "[[GitHub]]"</code>
 
*<code>provider "[[GitHub]]"</code>
 
*<code>provider "[[aws]]"</code>
 
*<code>provider "[[aws]]"</code>
Line 8: Line 7:
 
*<code>provider "[[libvirt]]" </code>
 
*<code>provider "[[libvirt]]" </code>
  
 +
 +
Use: <code>[[terraform provider]]</code> command to list providers used in your <code>[[main.tf]]</code>
  
 
==  [[Terraform Libvirt module]] ==
 
==  [[Terraform Libvirt module]] ==

Revision as of 11:37, 6 September 2021

List of terraform providers: [1]


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

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
  • Advertising: