From 29beb051c5ce4cf271b29f36b3ce5a7366071ef5 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 9 Feb 2021 15:37:03 -0500 Subject: [PATCH] Fix borken URL --- website/content/docs/builders/community-supported.mdx | 2 +- website/content/docs/plugins/creation/custom-datasources.mdx | 4 ++-- website/content/docs/post-processors/community-supported.mdx | 2 +- website/content/docs/provisioners/community-supported.mdx | 2 +- website/content/docs/templates/hcl_templates/datasources.mdx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/content/docs/builders/community-supported.mdx b/website/content/docs/builders/community-supported.mdx index 8f9fc26e3..a2d64c0a8 100644 --- a/website/content/docs/builders/community-supported.mdx +++ b/website/content/docs/builders/community-supported.mdx @@ -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' diff --git a/website/content/docs/plugins/creation/custom-datasources.mdx b/website/content/docs/plugins/creation/custom-datasources.mdx index 8ef063ae5..b9f1055fd 100644 --- a/website/content/docs/plugins/creation/custom-datasources.mdx +++ b/website/content/docs/plugins/creation/custom-datasources.mdx @@ -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()`. diff --git a/website/content/docs/post-processors/community-supported.mdx b/website/content/docs/post-processors/community-supported.mdx index 4db4e556d..e0b2bbeb3 100644 --- a/website/content/docs/post-processors/community-supported.mdx +++ b/website/content/docs/post-processors/community-supported.mdx @@ -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' diff --git a/website/content/docs/provisioners/community-supported.mdx b/website/content/docs/provisioners/community-supported.mdx index 1be85c0f6..c1b58a53d 100644 --- a/website/content/docs/provisioners/community-supported.mdx +++ b/website/content/docs/provisioners/community-supported.mdx @@ -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' diff --git a/website/content/docs/templates/hcl_templates/datasources.mdx b/website/content/docs/templates/hcl_templates/datasources.mdx index f0a6359bb..6c6dc4eec 100644 --- a/website/content/docs/templates/hcl_templates/datasources.mdx +++ b/website/content/docs/templates/hcl_templates/datasources.mdx @@ -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) !