From 4f88c6b0ccd520b945dd81231a34bead4ef9574f Mon Sep 17 00:00:00 2001 From: David Rubin Date: Fri, 5 Apr 2019 17:09:56 +0200 Subject: [PATCH] Fixes documentation to not use `resources` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e58c9e..eb45435 100644 --- a/README.md +++ b/README.md @@ -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 } @@ -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}"] } ```