Skip to content

Instantly share code, notes, and snippets.

@li0nel
Last active June 5, 2018 11:20
Show Gist options
  • Save li0nel/47288f47b5219c2df595c8787b59bbb0 to your computer and use it in GitHub Desktop.
Save li0nel/47288f47b5219c2df595c8787b59bbb0 to your computer and use it in GitHub Desktop.
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 "single-page-application" {
source = "li0nel/single-page-application/aws"
version = "0.0.8"
stack_name = "${var.stack_name}"
aws_profile = "${var.aws_profile}"
aws_region = "${var.aws_region}"
domain_name = "${var.domain_name}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment