Skip to content

Instantly share code, notes, and snippets.

View jbfarez's full-sized avatar

Jean-Baptiste Farez jbfarez

View GitHub Profile
@jbfarez
jbfarez / 15-acme-operations.tf
Created July 17, 2018 14:47 — forked from QuingKhaos/15-acme-operations.tf
Terraform initialization of AWS sub account
// Configure AWS provider
variable "acme_operations" {
default = "ACCOUNTID"
}
provider "aws" {
alias = "acme_operations"
profile = "acme_operations"
region = "${var.aws_default_region}"
shared_credentials_file = "./credentials"