2020-06-05 15:37:50 -07:00
|
|
|
{{ $providerName := .Get 0 }}
|
|
|
|
{{ $packagePath := printf "/docs/reference/pkg/%s" $providerName }}
|
|
|
|
|
|
|
|
{{- /* Not all providers have resource docs, so we check to make sure they do before trying to link to them. */ -}}
|
|
|
|
{{ if fileExists (printf "%s/_index.md" $packagePath) }}
|
2023-05-18 11:36:01 -07:00
|
|
|
<div class="note note-info">
|
|
|
|
<div class="icon-and-line">
|
|
|
|
<i class="fas fa-info-circle"></i>
|
|
|
|
<div class="line"></div>
|
2021-04-20 00:37:26 -07:00
|
|
|
</div>
|
2023-05-18 11:36:01 -07:00
|
|
|
<div class="content">
|
2021-04-20 00:37:26 -07:00
|
|
|
<p>
|
2022-06-01 10:58:20 -07:00
|
|
|
This page documents the language specification for the
|
|
|
|
{{ $providerName }}
|
|
|
|
package. If you're looking for help working with the inputs, outputs, or functions of {{ $providerName }} resources in a Pulumi program,
|
|
|
|
<a href="{{ relref . $packagePath }}">please see the resource documentation</a> for examples and API reference.
|
2021-04-20 00:37:26 -07:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-06-05 15:37:50 -07:00
|
|
|
</div>
|
|
|
|
{{ end }}
|