From 622fca1c0e1d0a3965445872c312146af4c5ffc9 Mon Sep 17 00:00:00 2001 From: Louis Ruch Date: Mon, 3 Oct 2022 18:24:10 -0700 Subject: [PATCH] chore: run go generate --- docs/resources/host_catalog_plugin.md | 28 +++++------ docs/resources/host_set_plugin.md | 50 +++++++++---------- .../boundary_host_catalog_plugin/resource.tf | 28 +++++------ .../boundary_host_set_plugin/resource.tf | 50 +++++++++---------- 4 files changed, 78 insertions(+), 78 deletions(-) diff --git a/docs/resources/host_catalog_plugin.md b/docs/resources/host_catalog_plugin.md index 0f615527..a46b0cf0 100644 --- a/docs/resources/host_catalog_plugin.md +++ b/docs/resources/host_catalog_plugin.md @@ -38,13 +38,13 @@ resource "boundary_host_catalog_plugin" "aws_example" { description = "My first host catalog!" scope_id = boundary_scope.project.id plugin_name = "aws" - attributes_json = jsonencode({"region"="us-east-1"}) + attributes_json = jsonencode({ "region" = "us-east-1" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in aws by creating a aws iam user with programmatic access - secrets_json = jsonencode({ - "access_key_id"="aws_access_key_id_value", - "secret_access_key"="aws_secret_access_key_value" + secrets_json = jsonencode({ + "access_key_id" = "aws_access_key_id_value", + "secret_access_key" = "aws_secret_access_key_value" }) } @@ -54,23 +54,23 @@ resource "boundary_host_catalog_plugin" "aws_example" { # For more information about azure ad applications, please visit here: # https://learn.hashicorp.com/tutorials/boundary/azure-host-catalogs#register-a-new-azure-ad-application-1 resource "boundary_host_catalog_plugin" "azure_example" { - name = "My azure catalog" - description = "My second host catalog!" - scope_id = boundary_scope.project.id - plugin_name = "azure" + name = "My azure catalog" + description = "My second host catalog!" + scope_id = boundary_scope.project.id + plugin_name = "azure" # the attributes below must be generated in azure by creating an ad application attributes_json = jsonencode({ - "disable_credential_rotation"="true", - "tenant_id"="ARM_TENANT_ID", - "subscription_id"="ARM_SUBSCRIPTION_ID", - "client_id"="ARM_CLIENT_ID" + "disable_credential_rotation" = "true", + "tenant_id" = "ARM_TENANT_ID", + "subscription_id" = "ARM_SUBSCRIPTION_ID", + "client_id" = "ARM_CLIENT_ID" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in azure by creating an ad application - secrets_json = jsonencode({ - "secret_value"="ARM_CLIENT_SECRET" + secrets_json = jsonencode({ + "secret_value" = "ARM_CLIENT_SECRET" }) } ``` diff --git a/docs/resources/host_set_plugin.md b/docs/resources/host_set_plugin.md index d6463ffb..143803dd 100644 --- a/docs/resources/host_set_plugin.md +++ b/docs/resources/host_set_plugin.md @@ -38,29 +38,29 @@ resource "boundary_host_catalog_plugin" "aws_example" { description = "My first host catalog!" scope_id = boundary_scope.project.id plugin_name = "aws" - attributes_json = jsonencode({"region"="us-east-1"}) + attributes_json = jsonencode({ "region" = "us-east-1" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in aws by creating a aws iam user with programmatic access - secrets_json = jsonencode({ - "access_key_id"="aws_access_key_id_value", - "secret_access_key"="aws_secret_access_key_value" + secrets_json = jsonencode({ + "access_key_id" = "aws_access_key_id_value", + "secret_access_key" = "aws_secret_access_key_value" }) } resource "boundary_host_set_plugin" "web" { name = "My web host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id - attributes_json = jsonencode({"filters"="tag:service-type=web"}) + attributes_json = jsonencode({ "filters" = "tag:service-type=web" }) } resource "boundary_host_set_plugin" "foobar" { name = "My foobar host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id preferred_endpoints = ["cidr:54.0.0.0/8"] - attributes_json = jsonencode({ - "filters"="tag-key=foo", - "filters"="tag-key=bar" + attributes_json = jsonencode({ + "filters" = "tag-key=foo", + "filters" = "tag-key=bar" }) } @@ -68,9 +68,9 @@ resource "boundary_host_set_plugin" "launch" { name = "My launch host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id sync_interval_seconds = 60 - attributes_json = jsonencode({ - "filters"="tag:development=prod,dev", - "filters"="launch-time=2022-01-04T*" + attributes_json = jsonencode({ + "filters" = "tag:development=prod,dev", + "filters" = "launch-time=2022-01-04T*" }) } @@ -80,30 +80,30 @@ resource "boundary_host_set_plugin" "launch" { # For more information about azure ad applications, please visit here: # https://learn.hashicorp.com/tutorials/boundary/azure-host-catalogs#register-a-new-azure-ad-application-1 resource "boundary_host_catalog_plugin" "azure_example" { - name = "My azure catalog" - description = "My second host catalog!" - scope_id = boundary_scope.project.id - plugin_name = "azure" + name = "My azure catalog" + description = "My second host catalog!" + scope_id = boundary_scope.project.id + plugin_name = "azure" # the attributes below must be generated in azure by creating an ad application attributes_json = jsonencode({ - "disable_credential_rotation"="true", - "tenant_id"="ARM_TENANT_ID", - "subscription_id"="ARM_SUBSCRIPTION_ID", - "client_id"="ARM_CLIENT_ID" + "disable_credential_rotation" = "true", + "tenant_id" = "ARM_TENANT_ID", + "subscription_id" = "ARM_SUBSCRIPTION_ID", + "client_id" = "ARM_CLIENT_ID" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in azure by creating an ad application - secrets_json = jsonencode({ - "secret_value"="ARM_CLIENT_SECRET" + secrets_json = jsonencode({ + "secret_value" = "ARM_CLIENT_SECRET" }) } resource "boundary_host_set_plugin" "database" { name = "My database host set plugin" host_catalog_id = boundary_host_catalog_plugin.azure_exmaple.id - attributes_json = jsonencode({"filter"="tagName eq 'service-type' and tagValue eq 'database'"}) + attributes_json = jsonencode({ "filter" = "tagName eq 'service-type' and tagValue eq 'database'" }) } resource "boundary_host_set_plugin" "foodev" { @@ -111,9 +111,9 @@ resource "boundary_host_set_plugin" "foodev" { host_catalog_id = boundary_host_catalog_plugin.azure_exmaple.id preferred_endpoints = ["cidr:54.0.0.0/8"] sync_interval_seconds = 60 - attributes_json = jsonencode({ - "filter"="tagName eq 'tag-key' and tagValue eq 'foo'", - "filter"="tagName eq 'application' and tagValue eq 'dev'", + attributes_json = jsonencode({ + "filter" = "tagName eq 'tag-key' and tagValue eq 'foo'", + "filter" = "tagName eq 'application' and tagValue eq 'dev'", }) } ``` diff --git a/examples/resources/boundary_host_catalog_plugin/resource.tf b/examples/resources/boundary_host_catalog_plugin/resource.tf index 9b68ae69..0d930672 100644 --- a/examples/resources/boundary_host_catalog_plugin/resource.tf +++ b/examples/resources/boundary_host_catalog_plugin/resource.tf @@ -23,13 +23,13 @@ resource "boundary_host_catalog_plugin" "aws_example" { description = "My first host catalog!" scope_id = boundary_scope.project.id plugin_name = "aws" - attributes_json = jsonencode({"region"="us-east-1"}) + attributes_json = jsonencode({ "region" = "us-east-1" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in aws by creating a aws iam user with programmatic access - secrets_json = jsonencode({ - "access_key_id"="aws_access_key_id_value", - "secret_access_key"="aws_secret_access_key_value" + secrets_json = jsonencode({ + "access_key_id" = "aws_access_key_id_value", + "secret_access_key" = "aws_secret_access_key_value" }) } @@ -39,22 +39,22 @@ resource "boundary_host_catalog_plugin" "aws_example" { # For more information about azure ad applications, please visit here: # https://learn.hashicorp.com/tutorials/boundary/azure-host-catalogs#register-a-new-azure-ad-application-1 resource "boundary_host_catalog_plugin" "azure_example" { - name = "My azure catalog" - description = "My second host catalog!" - scope_id = boundary_scope.project.id - plugin_name = "azure" + name = "My azure catalog" + description = "My second host catalog!" + scope_id = boundary_scope.project.id + plugin_name = "azure" # the attributes below must be generated in azure by creating an ad application attributes_json = jsonencode({ - "disable_credential_rotation"="true", - "tenant_id"="ARM_TENANT_ID", - "subscription_id"="ARM_SUBSCRIPTION_ID", - "client_id"="ARM_CLIENT_ID" + "disable_credential_rotation" = "true", + "tenant_id" = "ARM_TENANT_ID", + "subscription_id" = "ARM_SUBSCRIPTION_ID", + "client_id" = "ARM_CLIENT_ID" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in azure by creating an ad application - secrets_json = jsonencode({ - "secret_value"="ARM_CLIENT_SECRET" + secrets_json = jsonencode({ + "secret_value" = "ARM_CLIENT_SECRET" }) } diff --git a/examples/resources/boundary_host_set_plugin/resource.tf b/examples/resources/boundary_host_set_plugin/resource.tf index 948dd2f0..aef9f6ef 100644 --- a/examples/resources/boundary_host_set_plugin/resource.tf +++ b/examples/resources/boundary_host_set_plugin/resource.tf @@ -23,29 +23,29 @@ resource "boundary_host_catalog_plugin" "aws_example" { description = "My first host catalog!" scope_id = boundary_scope.project.id plugin_name = "aws" - attributes_json = jsonencode({"region"="us-east-1"}) + attributes_json = jsonencode({ "region" = "us-east-1" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in aws by creating a aws iam user with programmatic access - secrets_json = jsonencode({ - "access_key_id"="aws_access_key_id_value", - "secret_access_key"="aws_secret_access_key_value" + secrets_json = jsonencode({ + "access_key_id" = "aws_access_key_id_value", + "secret_access_key" = "aws_secret_access_key_value" }) } resource "boundary_host_set_plugin" "web" { name = "My web host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id - attributes_json = jsonencode({"filters"="tag:service-type=web"}) + attributes_json = jsonencode({ "filters" = "tag:service-type=web" }) } resource "boundary_host_set_plugin" "foobar" { name = "My foobar host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id preferred_endpoints = ["cidr:54.0.0.0/8"] - attributes_json = jsonencode({ - "filters"="tag-key=foo", - "filters"="tag-key=bar" + attributes_json = jsonencode({ + "filters" = "tag-key=foo", + "filters" = "tag-key=bar" }) } @@ -53,9 +53,9 @@ resource "boundary_host_set_plugin" "launch" { name = "My launch host set plugin" host_catalog_id = boundary_host_catalog_plugin.aws_exmaple.id sync_interval_seconds = 60 - attributes_json = jsonencode({ - "filters"="tag:development=prod,dev", - "filters"="launch-time=2022-01-04T*" + attributes_json = jsonencode({ + "filters" = "tag:development=prod,dev", + "filters" = "launch-time=2022-01-04T*" }) } @@ -65,30 +65,30 @@ resource "boundary_host_set_plugin" "launch" { # For more information about azure ad applications, please visit here: # https://learn.hashicorp.com/tutorials/boundary/azure-host-catalogs#register-a-new-azure-ad-application-1 resource "boundary_host_catalog_plugin" "azure_example" { - name = "My azure catalog" - description = "My second host catalog!" - scope_id = boundary_scope.project.id - plugin_name = "azure" + name = "My azure catalog" + description = "My second host catalog!" + scope_id = boundary_scope.project.id + plugin_name = "azure" # the attributes below must be generated in azure by creating an ad application attributes_json = jsonencode({ - "disable_credential_rotation"="true", - "tenant_id"="ARM_TENANT_ID", - "subscription_id"="ARM_SUBSCRIPTION_ID", - "client_id"="ARM_CLIENT_ID" + "disable_credential_rotation" = "true", + "tenant_id" = "ARM_TENANT_ID", + "subscription_id" = "ARM_SUBSCRIPTION_ID", + "client_id" = "ARM_CLIENT_ID" }) # recommended to pass in aws secrets using a file() or using environment variables # the secrets below must be generated in azure by creating an ad application - secrets_json = jsonencode({ - "secret_value"="ARM_CLIENT_SECRET" + secrets_json = jsonencode({ + "secret_value" = "ARM_CLIENT_SECRET" }) } resource "boundary_host_set_plugin" "database" { name = "My database host set plugin" host_catalog_id = boundary_host_catalog_plugin.azure_exmaple.id - attributes_json = jsonencode({"filter"="tagName eq 'service-type' and tagValue eq 'database'"}) + attributes_json = jsonencode({ "filter" = "tagName eq 'service-type' and tagValue eq 'database'" }) } resource "boundary_host_set_plugin" "foodev" { @@ -96,8 +96,8 @@ resource "boundary_host_set_plugin" "foodev" { host_catalog_id = boundary_host_catalog_plugin.azure_exmaple.id preferred_endpoints = ["cidr:54.0.0.0/8"] sync_interval_seconds = 60 - attributes_json = jsonencode({ - "filter"="tagName eq 'tag-key' and tagValue eq 'foo'", - "filter"="tagName eq 'application' and tagValue eq 'dev'", + attributes_json = jsonencode({ + "filter" = "tagName eq 'tag-key' and tagValue eq 'foo'", + "filter" = "tagName eq 'application' and tagValue eq 'dev'", }) } \ No newline at end of file