forked from hashicorp/terraform-provider-random
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.erb
44 lines (41 loc) · 1.78 KB
/
random.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<% wrap_layout :inner do %>
<% content_for :sidebar do %>
<div class="docs-sidebar hidden-print affix-top" role="complementary">
<ul class="nav docs-sidenav">
<li<%= sidebar_current("docs-home") %>>
<a href="/docs/providers/index.html">All Providers</a>
</li>
<li<%= sidebar_current("docs-random-index") %>>
<a href="/docs/providers/random/index.html">Random Provider</a>
</li>
<li<%= sidebar_current("docs-random-resource") %>>
<a href="#">Resources</a>
<ul class="nav nav-visible">
<li<%= sidebar_current("docs-random-resource-id") %>>
<a href="/docs/providers/random/r/id.html">random_id</a>
</li>
<li<%= sidebar_current("docs-random-resource-integer") %>>
<a href="/docs/providers/random/r/integer.html">random_integer</a>
</li>
<li<%= sidebar_current("docs-random-resource-password") %>>
<a href="/docs/providers/random/r/password.html">random_password</a>
</li>
<li<%= sidebar_current("docs-random-resource-pet") %>>
<a href="/docs/providers/random/r/pet.html">random_pet</a>
</li>
<li<%= sidebar_current("docs-random-resource-shuffle") %>>
<a href="/docs/providers/random/r/shuffle.html">random_shuffle</a>
</li>
<li<%= sidebar_current("docs-random-resource-string") %>>
<a href="/docs/providers/random/r/string.html">random_string</a>
</li>
<li<%= sidebar_current("docs-random-resource-uuid") %>>
<a href="/docs/providers/random/r/uuid.html">random_uuid</a>
</li>
</ul>
</li>
</ul>
</div>
<% end %>
<%= yield %>
<% end %>