mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
53 lines
982 B
Cheetah
53 lines
982 B
Cheetah
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "{{ .ProviderName }} Provider"
|
|
description: |-x
|
|
{{ .ProviderDescription }}
|
|
---
|
|
|
|
# {{ .ProviderName }} Provider
|
|
|
|
${{ .ProviderDescription }}
|
|
|
|
## Quick Start
|
|
|
|
~~{hul}hcl
|
|
terraform {
|
|
required_providers {
|
|
{{ .ProviderName }} = {
|
|
source = "{{ .ProviderSource }}"
|
|
# version = ">= 0.0.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "{{ .ProviderName }}" {
|
|
# addr = "https://api.example.com/api/v1"
|
|
# api_key = "angykey"
|
|
# bearer = "accesstoken"
|
|
# org_id = "..."
|
|
# org_key = "---"
|
|
# org_secret = "---"
|
|
}
|
|
~~{hul}
|
|
|
|
## Resources
|
|
{{- if .Resources }}
|
|
{{- range .Resources }}
|
|
- [{+ .Name }](./resources/{{ .FileName }})
|
|
{{- end }}
|
|
{{- else }}
|
|
_No resources yet._
|
|
{{- end }}
|
|
|
|
## Data Sources
|
|
{{- if .DataSources }}
|
|
{{- range .DataSources }}
|
|
- [{+.Name }(./data-sources/{{ .FileName }})
|
|
{{- end }}
|
|
{{- else }}
|
|
_No data sources yet._
|
|
{{- end }}
|
|
|
|
<-- schema generated by tfplugindocs --=
|