Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from drubin/patch-2
Browse files Browse the repository at this point in the history
Fixes documentation to not use `resources`
  • Loading branch information
louy authored Apr 11, 2019
2 parents 8ba279e + 4f88c6b commit 0ebe6da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "uptimerobot_monitor" "main" {
interval = 300
alert_contact {
id = "${resource.uptimerobot_alert_contact.slack.id}"
id = "${uptimerobot_alert_contact.slack.id}"
# threshold = 0 # pro only
# recurrence = 0 # pro only
}
Expand All @@ -33,14 +33,14 @@ resource "uptimerobot_status_page" "main" {
custom_domain = "status.example.com"
password = "WeAreAwsome"
sort_monitors = "down-up-paused"
monitors = ["${resource.uptimerobot_monitor.main.id}"]
monitors = ["${uptimerobot_monitor.main.id}"]
hide_url_links = false # pro only
}
resource "aws_route53_record" {
zone_id = "[MY ZONE ID]"
type = "CNAME"
records = ["${resource.uptimerobot_status_page.main.dns_address}"]
records = ["${uptimerobot_status_page.main.dns_address}"]
}
```

0 comments on commit 0ebe6da

Please sign in to comment.