diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4817a6d..d674e7b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,6 +6,6 @@ repos: - id: trailing-whitespace - id: detect-private-key - repo: git://github.com/4ops/pre-commit-hooks - rev: v1.0.0 + rev: v1.1.0 hooks: - id: terraform-fmt diff --git a/README.md b/README.md index 6428586..048977a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Setup modules in `main.tf`: ```terraform module myip { source = "4ops/myip/http" - version = "1.0.0" + version = "1.1.0" } resource aws_security_group allow_ssh { diff --git a/example/main.tf b/example/main.tf index 29e0a31..2d9b55a 100644 --- a/example/main.tf +++ b/example/main.tf @@ -9,7 +9,7 @@ terraform { module myip { source = "../" # source = "4ops/myip/http" - # version = "1.0.0" + # version = "1.1.0" } resource aws_security_group allow_ssh { diff --git a/outputs.tf b/outputs.tf index 8aaaa02..d7f6c92 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,4 +1,4 @@ output address { - value = data.http.ip_address.body + value = data.http.ip_address.response_body description = "External IP address" }