Skip to content

Commit

Permalink
Update CHANGELOG.md for v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lhercot committed Dec 16, 2021
1 parent 8bf4572 commit 263869f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.4.0 (December 16, 2021)
BEHAVIOR CHANGE:
- Modify mso_schema_template_deploy so destroy undeploy all sites

BUG FIXES:
- Fix idemptotency issue with site_id in template_external_epg

## 0.3.4 (December 16, 2021)

BUG FIXES:
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/schema_template_deploy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ resource "mso_schema_template_deploy" "template_deployer" {

* `schema_id` - (Required) The schema-id of template.
* `template_name` - (Required) name of the template to deploy/undeploy.
* `undeploy` - (Optional) Boolean flag indicating whether to undeploy the template or not. Default is false.
* `undeploy` - (Optional) Boolean flag indicating whether to undeploy the template from a single site (see site_id) or not. Default is false.
* `site_id` - (Optional) Site-id from where the template is to be undeployed. It is required if you set undeploy = true.

NOTE: This resource is intentionally created non-idempotent so that it deploys the template in every run, it will not fail if there is no change and we deploy the template again.
NOTE: This resource is intentionally created non-idempotent so that it deploys the template in every run, it will not fail if there is no change and we deploy the template again. When destroying the resource, all sites will be undeployed.


## Attribute Reference ##
Expand Down

0 comments on commit 263869f

Please sign in to comment.