Releases: CiscoDevNet/terraform-provider-intersight
Releases · CiscoDevNet/terraform-provider-intersight
v1.0.10
v1.0.9
v1.0.8
- Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 4267)
- Fixes an issue with cisco.meta tags
- Fixes an issue around trying to delete object instances that did not exist.
- Adds a landing page (https://github.com/CiscoDevNet/terraform-provider-intersight/blob/master/guides/index.html.markdown) for the documentation. The community can contribute to this page by raising PRs.
v1.0.7
v1.0.6
v1.0.5
- Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 4155).
- Some errors are reported better instead of a generic typecasting failure message.
- Some properties like CreateTime, Parents, Owners, Resources which were getting intentionally excluded are not included.
- Allows the provider to work from behind a proxy server.
- Adds usage example for over 200 resources.
- Documentation has been enhanced to showcase the usage examples first in the resource documentation.
v1.0.4
v1.0.3
- Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 3942).
- Provides an optional
wait_for_completion
property to disable workflow wait feature. It is set to true by default.
The following configuration triggers a server profile deployment and returns without waiting for the workflow completion.
resource "intersight_server_profile" "demo_profile" {
name = "test-ci"
action="Deploy"
wait_for_completion=false
}
``
v1.0.2
- Refreshes the terraform module to be in sync with the latest Cisco Intersight model (build 3824).
terraform apply
will wait till all workflows triggered due to the operation reach an end state.- Data sources now store the results as a list. The syntax to access a property in the ith index of results is
data.intersight_<model_name>.<custom_name>.results[i].<property_name>