Difference between revisions of "Terraform providers: provider"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
 
Configuration:
 
Configuration:
 
* <code>[[provider.tf]]</code> and <code>[[provider]]</code> keyword
 
* <code>[[provider.tf]]</code> and <code>[[provider]]</code> keyword
 +
* <code>[[.terraform/providers/]]</code>
  
 
Binary:  
 
Binary:  
 
* <code>[[terraform providers (command)|terraform providers]]</code> command prints a tree of the Terraform providers used in the configuration.
 
* <code>[[terraform providers (command)|terraform providers]]</code> command prints a tree of the Terraform providers used in the configuration.
 
Configurations:
 
* <code>[[.terraform/providers/]]</code>
 
  
 
== Providers list ==
 
== Providers list ==

Revision as of 09:01, 14 October 2022

Terraform providers are plugins to interact with cloud providers, SaaS providers, and other APIs.


Configuration:

Binary:

  • terraform providers command prints a tree of the Terraform providers used in the configuration.

Providers list

List of some Terraform providers, hashicorp/: [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 commands

Errors

Related terms

See also

  • https://registry.terraform.io/browse/providers
  • https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs
  • Advertising: