Skip to content

Commit

Permalink
Descriptions runtimeconfig config (#3675) (#2228)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician authored Jun 24, 2020
1 parent e310f16 commit b2260a7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .changelog/3675.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
15 changes: 9 additions & 6 deletions google-beta/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 b2260a7

Please sign in to comment.