Skip to content

Instantly share code, notes, and snippets.

@li0nel
Last active July 13, 2018 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save li0nel/824dffeb86c1e217c4609ceb5061fa1f to your computer and use it in GitHub Desktop.
Save li0nel/824dffeb86c1e217c4609ceb5061fa1f to your computer and use it in GitHub Desktop.
example/master.tf
provider "aws" {
region = "${var.aws_region}"
profile = "${var.aws_profile}"
version = "~> 1.9"
}
provider "aws" {
region = "us-east-1"
profile = "${var.aws_profile}"
alias = "us-east-1"
version = "~> 1.9"
}
module "cloudfront-image-compression" {
source = "li0nel/cloudfront-image-compression/aws"
version = "0.0.3"
aws_profile = "${var.aws_profile}"
aws_region = "${var.aws_region}"
stack_name = "${var.stack_name}"
domain = "${var.domain}"
subdomain = "${var.subdomain}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment