diff --git a/CHANGELOG.md b/CHANGELOG.md index c319ecf..7bb24b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1 +ENHANCEMENT: +* Add outputs for Terraform [#14](https://github.com/zoitech/terraform-aws-cloudfront/issues/14) + ## 2.0.0 ENHANCEMENT: * Upgrade to terraform 0.13 [#6](https://github.com/zoitech/terraform-aws-cloudfront/issues/6) diff --git a/outputs.tf b/outputs.tf index 89fd95e..e795490 100644 --- a/outputs.tf +++ b/outputs.tf @@ -6,3 +6,10 @@ output "hosted_zone_id" { value = aws_cloudfront_distribution.distribution.hosted_zone_id } +output "cf_arn" { + value = aws_cloudfront_distribution.distribution.arn +} + +output "cf_id" { + value = aws_cloudfront_distribution.distribution.id +} \ No newline at end of file