Skip to content

Commit

Permalink
0.12.1 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Jun 7, 2019
1 parent 049e8b0 commit 49bbb84
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Create a file called `main.tf` wherever you want to store these things. Put the
``` terraform
module "munki-repo" {
source = "grahamgilbert/munki-repo/aws"
version = "0.0.7"
version = "0.1.0"
munki_s3_bucket = "my-munki-bucket"
username = "munki"
password = "ilovemunki"
Expand Down
3 changes: 0 additions & 3 deletions cloudfront.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ resource "aws_cloudfront_distribution" "www_distribution" {
compress = true
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
min_ttl = 0
default_ttl = 30
max_ttl = 60
target_origin_id = "munki"

forwarded_values {
Expand Down
2 changes: 1 addition & 1 deletion lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ EOF
data "template_file" "basic_auth_js" {
template = "${file("${path.module}/basic_auth.js.tpl")}"

vars {
vars = {
username = "${var.username}"
password = "${var.password}"
}
Expand Down

0 comments on commit 49bbb84

Please sign in to comment.