mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 00:16:18 -06:00
As of this commit this provider has only logical resources that allow the creation of private keys, self-signed certs and certificate requests. These can be useful when creating other resources that use TLS certificates, such as AWS Elastic Load Balancers. Later it could grow to include support for real certificate provision from CAs using the LetsEncrypt ACME protocol, once it is stable.
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<% 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">« Documentation Home</a>
|
|
</li>
|
|
|
|
<li<%= sidebar_current("docs-tls-index") %>>
|
|
<a href="/docs/providers/tls/index.html">TLS Provider</a>
|
|
</li>
|
|
|
|
<li<%= sidebar_current(/^docs-tls-resource/) %>>
|
|
<a href="#">Resources</a>
|
|
<ul class="nav nav-visible">
|
|
<li<%= sidebar_current("docs-tls-resourse-private-key") %>>
|
|
<a href="/docs/providers/tls/r/private_key.html">tls_private_key</a>
|
|
</li>
|
|
<li<%= sidebar_current("docs-tls-resourse-self-signed-cert") %>>
|
|
<a href="/docs/providers/tls/r/self_signed_cert.html">tls_self_signed_cert</a>
|
|
</li>
|
|
<li<%= sidebar_current("docs-tls-resourse-cert-request") %>>
|
|
<a href="/docs/providers/tls/r/cert_request.html">tls_cert_request</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= yield %>
|
|
<% end %>
|