Skip to content

Commit c397b2a

Browse files
authored
Merge pull request #1527 from smorimoto/require-tem-app-desc
Make the `description` parameter of the TEM Application required
2 parents 3990308 + 7703720 commit c397b2a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.changelog/1527.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/tencentcloud_tem_application: Make the `description` parameter of the TEM Application required
3+
```

tencentcloud/resource_tc_tem_application.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func resourceTencentCloudTemApplication() *schema.Resource {
4949

5050
"description": {
5151
Type: schema.TypeString,
52-
Optional: true,
52+
Required: true,
5353
Description: "application description.",
5454
},
5555

website/docs/r/tem_application.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following arguments are supported:
3434

3535
* `application_name` - (Required, String) application name.
3636
* `coding_language` - (Required, String) program language, like JAVA.
37-
* `description` - (Optional, String) application description.
37+
* `description` - (Required, String) application description.
3838
* `instance_id` - (Optional, String) tcr instance id.
3939
* `repo_name` - (Optional, String) repository name.
4040
* `repo_server` - (Optional, String) registry address.

0 commit comments

Comments
 (0)