Skip to content

Commit

Permalink
Descriptions runtimeconfig config (#3675)
Browse files Browse the repository at this point in the history
  • Loading branch information
trodge authored Jun 24, 2020
1 parent c9d521a commit cf7ab99
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions third_party/terraform/resources/resource_runtimeconfig_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.`,
},
},
}
Expand Down

0 comments on commit cf7ab99

Please sign in to comment.