Terraform Provider — Short Notes


Terraform & Provider Blocks

terraform block

provider block

Example:

provider "aws" {
  region = "us-east-1"
}

Version Constraints

Used to control which versions are allowed.

Operators: =, !=, <, >, <=, >=, and ~> (pessimistic constraint).


Basic Resource Example