mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-16 01:38:58 +03:00
consolodating to single folder
This commit is contained in:
17
terraform/aws/provider.tf
Normal file
17
terraform/aws/provider.tf
Normal file
@@ -0,0 +1,17 @@
|
||||
provider "aws" {
|
||||
version = "~> 2.0"
|
||||
region = "us-west-2"
|
||||
access_key = "${var.aws_access_key}"
|
||||
secret_key = "${var.aws_secret_key}"
|
||||
}
|
||||
|
||||
terraform {
|
||||
backend "remote" {
|
||||
hostname = "app.terraform.io"
|
||||
organization = "jibakurei"
|
||||
|
||||
workspaces {
|
||||
prefix = "kthw-"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user