Last active
July 13, 2018 10:32
-
-
Save li0nel/824dffeb86c1e217c4609ceb5061fa1f to your computer and use it in GitHub Desktop.
example/master.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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