July 2017
Beginner
208 pages
5h 10m
English
With this method, you just hardcode your access keys right inside your template. It looks as follows:
provider "aws" {
access_key = "xxxxxxxxxxxxx"
secret_key = "xxxxxxxxxxxxx"
region = "us-east-1"
}
Though the simplest one, it is also the least flexible and secure. You don't want to give your credentials just like this to everyone in the team. Rather, each team member should use his or her own keys. Consider this method a bad practice and avoid it when possible.
Read now
Unlock full access