From 6d2bf288276c142eb1e48731046b2a017d7cd4cd Mon Sep 17 00:00:00 2001 From: Jordan Levin Date: Mon, 4 Mar 2024 14:17:33 -0800 Subject: [PATCH] Fix go code spacing in configuration-a-resource.md --- docs/configuring-a-resource.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuring-a-resource.md b/docs/configuring-a-resource.md index eb81a9c1..0458be16 100644 --- a/docs/configuring-a-resource.md +++ b/docs/configuring-a-resource.md @@ -363,11 +363,11 @@ case, we would need to provide the full path. Referencing to a [kms key] from ```go func Configure(p *config.Provider) { - p.AddResourceConfigurator("aws_ebs_volume", func(r *config.Resource) { - r.References["kms_key_id"] = config.Reference{ - Type: "github.com/crossplane-contrib/provider-tf-aws/apis/kms/v1alpha1.Key", - } - }) + p.AddResourceConfigurator("aws_ebs_volume", func(r *config.Resource) { + r.References["kms_key_id"] = config.Reference{ + Type: "github.com/crossplane-contrib/provider-tf-aws/apis/kms/v1alpha1.Key", + } + }) } ```