Skip to content

Commit

Permalink
rpaas_acl: maake port field required
Browse files Browse the repository at this point in the history
  • Loading branch information
wpjunior committed Nov 19, 2021
1 parent 4410195 commit 06dd4e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions docs/resources/acl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "rpaas_acl Resource - terraform-provider-rpaas"
subcategory: ""
description: |-
---

# rpaas_acl (Resource)





<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **host** (String) Hostname of desired destination
- **instance** (String) RPaaS Instance Name
- **port** (Number) Number of port
- **service_name** (String) RPaaS Service Name

### Optional

- **id** (String) The ID of this resource.


2 changes: 1 addition & 1 deletion rpaas/resource_rpaas_acl.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func resourceRpaasACL() *schema.Resource {
},
"port": {
Type: schema.TypeInt,
Optional: true,
Required: true,
ForceNew: true,
Description: "Number of port",
},
Expand Down

0 comments on commit 06dd4e4

Please sign in to comment.