Skip to content

Commit

Permalink
Rename Repo (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored Sep 20, 2017
1 parent 77a593b commit f456fbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# tf_cdn_s3
# terraform-aws-cloudfront-s3-cdn

Terraform module to easily provision CloudFront CDN with an S3 or custom origin.
Terraform module to easily provision an AWS CloudFront CDN with an S3 or custom origin.

## Usage

module "cdn_s3" {
source = "git::https://github.com/cloudposse/tf_cdn_s3.git?ref=master"
module "cdn" {
source = "git::https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn.git?ref=master"
namespace = "${var.namespace}"
stage = "${var.stage}"
name = "${var.name}"
Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "origin_label" {
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
namespace = "${var.namespace}"
stage = "${var.stage}"
name = "${var.name}"
Expand Down Expand Up @@ -65,7 +65,7 @@ resource "aws_s3_bucket" "origin" {
}

module "logs" {
source = "git::https://github.com/cloudposse/tf_log_storage.git?ref=tags/0.1.0"
source = "git::https://github.com/cloudposse/terraform-aws-s3-log-storage.git?ref=tags/0.1.2"
namespace = "${var.namespace}"
stage = "${var.stage}"
name = "${var.name}"
Expand All @@ -79,7 +79,7 @@ module "logs" {
}

module "distribution_label" {
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
namespace = "${var.namespace}"
stage = "${var.stage}"
name = "${var.name}"
Expand Down

0 comments on commit f456fbb

Please sign in to comment.