Difference between revisions of "Main.tf"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 +
 +
* [[Aws instance example: main.tf]]
 +
  
 
== [[Terraform providers]] ==
 
== [[Terraform providers]] ==

Revision as of 08:15, 2 September 2021


Terraform providers

provider "random" {
}
provider "mysql" {
  endpoint = "my-database.example.com:3306"
  username = "app-user"
  password = "app-password"
}
provider "aws" {
 version = "~> 3.38.0"
 region = "us-west-2"
 profile = "your_profile_name"
}


Related commands

See also

Advertising: