diff options
author | George Christou <gechr@users.noreply.github.com> | 2017-02-18 22:48:50 +0000 |
---|---|---|
committer | Paul Stack <public@paulstack.co.uk> | 2017-02-19 00:48:50 +0200 |
commit | 506e71e564ab3c6571b41626133e4eb6842123b3 (patch) | |
tree | 896b9531e9e85e97b42c33be609f793217b46aff /r | |
parent | 46abe9530a669caa00077d66688ae26bc5560238 (diff) | |
download | terraform-provider-statuscake-506e71e564ab3c6571b41626133e4eb6842123b3.tar.gz terraform-provider-statuscake-506e71e564ab3c6571b41626133e4eb6842123b3.tar.zst terraform-provider-statuscake-506e71e564ab3c6571b41626133e4eb6842123b3.zip |
website/docs: Run `terraform fmt` on code examples (#12075)
* docs/vsphere: Fix code block
* docs: Convert `...` to `# ...` to allow `terraform fmt`ing
* docs: Trim trailing whitespace
* docs: First-pass run of `terraform fmt` on code examples
Diffstat (limited to 'r')
-rw-r--r-- | r/test.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/r/test.html.markdown b/r/test.html.markdown index 61ddb3e..2912afe 100644 --- a/r/test.html.markdown +++ b/r/test.html.markdown | |||
@@ -14,11 +14,11 @@ The test resource allows StatusCake tests to be managed by Terraform. | |||
14 | 14 | ||
15 | ``` | 15 | ``` |
16 | resource "statuscake_test" "google" { | 16 | resource "statuscake_test" "google" { |
17 | website_name = "google.com" | 17 | website_name = "google.com" |
18 | website_url = "www.google.com" | 18 | website_url = "www.google.com" |
19 | test_type = "HTTP" | 19 | test_type = "HTTP" |
20 | check_rate = 300 | 20 | check_rate = 300 |
21 | contact_id = 12345 | 21 | contact_id = 12345 |
22 | } | 22 | } |
23 | ``` | 23 | ``` |
24 | 24 | ||