Merge pull request #8364 from hashicorp/f-datadog-docs
provider/datadog: Docs updates
This commit is contained in:
commit
be5ba7bfdc
|
@ -101,3 +101,11 @@ The following arguments are supported:
|
||||||
The following attributes are exported:
|
The following attributes are exported:
|
||||||
|
|
||||||
* `id` - ID of the Datadog monitor
|
* `id` - ID of the Datadog monitor
|
||||||
|
|
||||||
|
## Import
|
||||||
|
|
||||||
|
Monitors can be imported using their numeric ID, e.g.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ terraform import datadog_monitor.bytes_received_localhost 2081
|
||||||
|
```
|
||||||
|
|
|
@ -3,25 +3,27 @@
|
||||||
<div class="docs-sidebar hidden-print affix-top" role="complementary">
|
<div class="docs-sidebar hidden-print affix-top" role="complementary">
|
||||||
<ul class="nav docs-sidenav">
|
<ul class="nav docs-sidenav">
|
||||||
<li<%= sidebar_current("docs-home") %>>
|
<li<%= sidebar_current("docs-home") %>>
|
||||||
<a href="/docs/providers/index.html">« Documentation Home</a>
|
<a href="/docs/providers/index.html">« Documentation Home</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-datadog-index") %>>
|
<li<%= sidebar_current("docs-datadog-index") %>>
|
||||||
<a href="/docs/providers/datadog/index.html">Datadog Provider</a>
|
<a href="/docs/providers/datadog/index.html">Datadog Provider</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current(/^docs-datadog-resource/) %>>
|
<li<%= sidebar_current(/^docs-datadog-resource/) %>>
|
||||||
<a href="#">Resources</a>
|
<a href="#">Resources</a>
|
||||||
<ul class="nav nav-visible">
|
<ul class="nav nav-visible">
|
||||||
<li<%= sidebar_current("docs-datadog-resource-monitor") %>>
|
<li<%= sidebar_current("docs-datadog-resource-monitor") %>>
|
||||||
<a href="/docs/providers/datadog/r/monitor.html">datadog_monitor</a>
|
<a href="/docs/providers/datadog/r/monitor.html">datadog_monitor</a>
|
||||||
<a href="/docs/providers/datadog/r/timeboard.html">datadog_timeboard</a>
|
</li>
|
||||||
</li>
|
<li<%= sidebar_current("docs-datadog-resource-timeboard") %>>
|
||||||
</ul>
|
<a href="/docs/providers/datadog/r/timeboard.html">datadog_timeboard</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in New Issue