Skip to content

Commit f456fbb

Browse files
authored
Rename Repo (#4)
1 parent 77a593b commit f456fbb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# tf_cdn_s3
1+
# terraform-aws-cloudfront-s3-cdn
22

3-
Terraform module to easily provision CloudFront CDN with an S3 or custom origin.
3+
Terraform module to easily provision an AWS CloudFront CDN with an S3 or custom origin.
44

55
## Usage
66

7-
module "cdn_s3" {
8-
source = "git::https://github.com/cloudposse/tf_cdn_s3.git?ref=master"
7+
module "cdn" {
8+
source = "git::https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn.git?ref=master"
99
namespace = "${var.namespace}"
1010
stage = "${var.stage}"
1111
name = "${var.name}"

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "origin_label" {
2-
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
2+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
33
namespace = "${var.namespace}"
44
stage = "${var.stage}"
55
name = "${var.name}"
@@ -65,7 +65,7 @@ resource "aws_s3_bucket" "origin" {
6565
}
6666

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

8181
module "distribution_label" {
82-
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
82+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
8383
namespace = "${var.namespace}"
8484
stage = "${var.stage}"
8585
name = "${var.name}"

0 commit comments

Comments
 (0)