Skip to content

Commit

Permalink
- Updated example
Browse files Browse the repository at this point in the history
  • Loading branch information
masutaka committed Mar 21, 2019
1 parent acaa3a2 commit c2edd7b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/test.tf
Expand Up @@ -11,12 +11,17 @@ resource "healthchecksio_check" "test" {
"unite",
]

grace = 120
grace = 120
schedule = "0,30 2 * * *"
timezone = "Asia/Tokyo"
channels = "${data.healthchecksio_channel.email.id}"
}

resource "healthchecksio_check" "bare_minimum" {
name = "test-bare-minimum-check"
timeout = 86400
}

data "healthchecksio_channel" "email" {
kind = "email"
}

0 comments on commit c2edd7b

Please sign in to comment.