Difference between revisions of "Terraform providers: provider"

From wikieduonline
Jump to navigation Jump to search
 
Line 21: Line 21:
  
 
* <code>provider "[[googleworkspace]]"</code>
 
* <code>provider "[[googleworkspace]]"</code>
 +
* <code>[[provider "google"]]</code>
 
* <code>provider "[[Terraform: Kubernetes provider|kubernetes]]"</code> <ref>https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs</ref>
 
* <code>provider "[[Terraform: Kubernetes provider|kubernetes]]"</code> <ref>https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs</ref>
 
* <code>provider "[[Terraform: Helm provider|helm]]"</code>  
 
* <code>provider "[[Terraform: Helm provider|helm]]"</code>  

Latest revision as of 15:16, 10 October 2024

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[edit]

List of some Terraform providers, hashicorp/: [1]

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

Terraform provider: AWS[edit]

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

Related commands[edit]

Errors[edit]

Related terms[edit]

See also[edit]

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