Skip to content

Commit

Permalink
Fixed documentation and made changes to CHANGELOG.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
anvitha-jain authored and lhercot committed Sep 24, 2021
1 parent 747600f commit 7bf4e06
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.3.0 (September 24, 2021)

BUG FIXES:
- Fix mso_schema_site_anp_epg Import when VRF or BD is not configured

IMPROVEMENTS:
- Added new resource mso_schema_site_external_epg
- Updated mso_user to support MSO/ND platform
- Updated resource and datasource mso_site to work with ND-based MSO / NDO
- Updated mso_schema_template_contract to support multiple filter_relationship and deprecate filter_relationships attribute.

## 0.2.1 (July 20, 2021)

BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/schema_template_service_graph.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "mso_schema_template_service_graph" "test_sg" {

## Attribute Reference ##

* `service_node_type` - (Optional) Type of Service Node attached to this Graph at index provided by `node_index`.
* `service_node_type` - (Optional) Type of Service Node attached to this Graph at index provided by `node_index`. Allowed values are `firewall`, `load-balancer` , `other`.
* `site_nodes` - (Optional) List of maps to Hold Site level Node association.
* `site_nodes.site_id` - (Optional) Site-Id Attached with the template. Where Service Graph is created.
* `site_nodes.tenant_name` - (Optional) Name of Tenant holding the Service Node.
Expand Down
10 changes: 5 additions & 5 deletions website/docs/d/user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ data "mso_user" "schema10" {
## Attribute Reference ##

* `user_password` - (Optional) password of the user. It must contain at least 8 characters in length.
* `roles` - (Optional) roles given to the user. This attribute is deprecated on ND-based MSO/NDO, use `user_rbac` instead.
* `roles.roleid` - (Optional) id of roles given to the user. This attribute is deprecated on ND-based MSO/NDO, use `user_rbac` instead.
* `roles.access_type` - (Optional) access_type of roles given to the user. This attribute is deprecated on ND-based MSO/NDO, use `user_rbac` instead.
* `roles` - **Deprecated** (Optional) roles given to the user. This attribute is deprecated on ND-based MSO/NDO, use `user_rbac` instead.
* `roles.roleid` - (Optional) id of roles given to the user.
* `roles.access_type` - (Optional) access_type of roles given to the user.
* `user_rbac` - (Optional) roles given to the user.
* `user_rbac.name` - (Optional) name of roles given to the user.
* `user_rbac.user_priv` - (Optional) Privilege access given to users (WritePriv, ReadPriv)
* `user_rbac.name` - (Optional) name of roles given to the user.
* `user_rbac.user_priv` - (Optional) Privilege access given to users (WritePriv, ReadPriv)
* `first_name` - (Optional) firstname of the user.
* `last_name` - (Optional) lastname of the user.
* `email` - (Optional) email of the user.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/schema_template_service_graph.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "mso_schema_template_service_graph" "test_sg" {
* `schema_id` - (Required) Schema ID where Service Graph to be created.
* `template_name` - (Required) Template Name where Service Graph to be created.
* `service_graph_name` - (Required) Name of Service Graph.
* `service_node_type` - (Required) Type of Service Node attached to this Graph.
* `service_node_type` - (Required) Type of Service Node attached to this Graph. Allowed values are `firewall`, `load-balancer` , `other`.
* `description` - (Optional) Description of Service Graph.
* `site_nodes` - (Optional) List of maps to provide Site level Node association. This maps should be provided if site is associated with template.
* `site_nodes.site_id` - (Optional) Site-Id Attached with the template. Where Service Graph will be created. This parameter is required when site is attached with the Template.
Expand Down
8 changes: 6 additions & 2 deletions website/docs/r/user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ resource "mso_user" "user1" {

* `username` - (Required) username of the user. It must contain at least 1 character in length.
* `user_password` - (Required) password of the user. It must contain at least 8 characters in length.
* `roles` - (Required) roles given to the user.
* `roles.roleid` - (Required) id of roles given to the user.
* `roles` - **Deprecated** (Optional) roles given to the user. This attribute is deprecated on ND-based MSO/NDO, use `user_rbac` instead.
* `roles.roleid` - (Optional) id of roles given to the user.
* `roles.access_type` - (Optional) access_type of roles given to the user.
* `user_rbac` - (Optional) roles given to the user.
* `user_rbac.name` - (Optional) name of roles given to the user.
* `user_rbac.user_priv` - (Optional) Privilege access given to users (WritePriv, ReadPriv)
* `first_name` - (Optional) firstname of the user.
* `last_name` - (Optional) lastname of the user.
* `email` - (Optional) email of the user.
Expand Down

0 comments on commit 7bf4e06

Please sign in to comment.