TERRAFORM BASICS
PROVIDERS
Providers are the abstraction layer between you
and the service you’re attempting to automate.
These services include IaaS (e.g. OpenStack,
Digital Ocean), PaaS (e.g. Heroku), SaaS (e.g.
CloudFlare, GitHub), and full service cloud (e.g.
AWS, Azure).
# Provider declaration
provider "aws" {
# AWS credentials should be declared as
environment variables.
region = “ap-southeast-2“
}
7
main.tf
Josh Michielsen | jmickey | jmickey_ | jmichielsen | @
[email protected]