Fix borken URL

This commit is contained in:
Wilken Rivera 2021-02-09 15:37:03 -05:00
parent bb03a321f2
commit 29beb051c5
5 changed files with 6 additions and 6 deletions

View File

@ -10,6 +10,6 @@ sidebar_title: Community-Supported
The following builders are developed and maintained by various members of the
Packer community, not by HashiCorp. For more information on how to use community
builders, see our docs on [extending Packer](/docs/extending).
builders, see our docs on [extending Packer](/docs/plugins/creation).
@include 'builders/community_builders.mdx'

View File

@ -10,10 +10,10 @@ sidebar_title: Custom Data Sources
Packer Data Sources are the components of Packer that allow data to be fetched for use within the configuration.
Use of data sources allows a build to use information defined outside of Packer. An example of
data source is the [amazon-ami data source](/docs/datasources/amazon-ami), which outputs the data of a fetched Amazon AMI.
data source is the [amazon-ami data source](/docs/datasources/amazon/ami), which outputs the data of a fetched Amazon AMI.
Prior to reading this page, it is assumed you have read the page on [plugin
development basics](/docs/extending/plugins).
development basics](/docs/plugins).
Data Source plugins implement the `packersdk.Datasource` interface and are registered within a plugin Set
with `set.RegisterDatasource(...)` function and served using the `set.Run()`.

View File

@ -12,6 +12,6 @@ sidebar_title: Community-Supported
The following post-processors are developed and maintained by various members of the
Packer community, not by HashiCorp. For more information on how to use community
post-processors, see our docs on [extending Packer](/docs/extending).
post-processors, see our docs on [extending Packer](/docs/plugins/creation).
@include 'post-processors/community_post-processors.mdx'

View File

@ -10,6 +10,6 @@ sidebar_title: Community-Supported
The following provisioners are developed and maintained by various members of the
Packer community, not by HashiCorp. For more information on how to use community
provisioners, see our docs on [extending Packer](/docs/extending).
provisioners, see our docs on [extending Packer](/docs/plugins/creation).
@include 'provisioners/community_provisioners.mdx'

View File

@ -79,4 +79,4 @@ source "amazon-ebs" "basic-example" {
- The list of available data sources can be found in the [data sources](/docs/datasources)
section.
- Create your own [custom data source](/docs/extending/custom-datasources) !
- Create your own [custom data source](/docs/plugins/creation/custom-datasources) !