Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output address {
value = data.http.ip_address.body
value = data.http.ip_address.response_body
description = "External IP address"
}