From cf7ab9967f6e1ac39c19e09254f273680ba90a15 Mon Sep 17 00:00:00 2001 From: Thomas Rodgers Date: Wed, 24 Jun 2020 13:34:11 -0700 Subject: [PATCH] Descriptions runtimeconfig config (#3675) --- .../resources/resource_runtimeconfig_config.go | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/third_party/terraform/resources/resource_runtimeconfig_config.go b/third_party/terraform/resources/resource_runtimeconfig_config.go index b8c2e94fe932..9db05231a365 100644 --- a/third_party/terraform/resources/resource_runtimeconfig_config.go +++ b/third_party/terraform/resources/resource_runtimeconfig_config.go @@ -27,18 +27,21 @@ func resourceRuntimeconfigConfig() *schema.Resource { Required: true, ForceNew: true, ValidateFunc: validateRegexp("[0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])?"), + Description: `The name of the runtime config.`, }, "description": { - Type: schema.TypeString, - Optional: true, + Type: schema.TypeString, + Optional: true, + Description: `The description to associate with the runtime config.`, }, "project": { - Type: schema.TypeString, - Optional: true, - Computed: true, - ForceNew: true, + Type: schema.TypeString, + Optional: true, + Computed: true, + ForceNew: true, + Description: `The ID of the project in which the resource belongs. If it is not provided, the provider project is used.`, }, }, }