Horje
Terraform aws provider Code Example
terraform aws provider
terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 3.0"
    }
  }
}

# Configure the AWS Provider
provider "aws" {
  region = "us-east-1"
}
Terraform aws provider
$ export AWS_DEFAULT_REGION=$(aws configure get region --profile default)
$ terraform plan
Refreshing Terraform state in-memory prior to plan...
...

------------------------------------------------------------------------

No changes. Infrastructure is up-to-date.




Shell

Related
download folder github Code Example download folder github Code Example
show mac address in ubuntu Code Example show mac address in ubuntu Code Example
strip first character form output linux Code Example strip first character form output linux Code Example
add readme cmd Code Example add readme cmd Code Example
manjaro mirrolist Code Example manjaro mirrolist Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9