This is an automated email from the ASF dual-hosted git repository.
dahn pushed a change to branch add-autoscale-support
in repository
https://gitbox.apache.org/repos/asf/cloudstack-terraform-provider.git
from 008ef2d Merge branch 'main' of
https://github.com/apache/cloudstack-terraform-provider into
add-autoscale-support
add 1216148 Add `cloudstack_domain` as a data source (#195)
add aace8e3 Add cloudstack_role data source and resource implementation
add be71510 Update import paths to use terraform-plugin-testing package
add 55ff8c1 Enhance cloudstack_role data source and resource with filter
support and improved documentation
add bbc1548 Fix TestAccCloudStackRole_basic test
add bc1e1c2 Merge branch 'main' into feature/role
add 204eaf5 Merge branch 'main' into feature/role
add 829eb42 Remove unused code
add b4b9f6d Merge pull request #181 from ianc769/feature/role
add aabf454 Fix update of VM details
add 6fbf6ff Merge pull request #158 from shapeblue/fixup-vm-details-update
add 532ff37 Merge branch 'main' into add-autoscale-support
No new revisions were added by this update.
Summary of changes:
cloudstack/data_source_cloudstack_domain.go | 133 ++++++++++++++++
cloudstack/data_source_cloudstack_domain_test.go | 133 ++++++++++++++++
...tack_zone.go => data_source_cloudstack_role.go} | 93 +++++++----
...test.go => data_source_cloudstack_role_test.go} | 43 +++--
cloudstack/provider.go | 3 +
cloudstack/resource_cloudstack_instance.go | 5 +
cloudstack/resource_cloudstack_role.go | 177 +++++++++++++++++++++
...ay_test.go => resource_cloudstack_role_test.go} | 92 +++++------
website/cloudstack.erb | 7 +
website/docs/d/domain.html.markdown | 39 +++++
website/docs/d/role.html.markdown | 59 +++++++
website/docs/r/role.html.markdown | 54 +++++++
12 files changed, 735 insertions(+), 103 deletions(-)
create mode 100644 cloudstack/data_source_cloudstack_domain.go
create mode 100644 cloudstack/data_source_cloudstack_domain_test.go
copy cloudstack/{data_source_cloudstack_zone.go =>
data_source_cloudstack_role.go} (52%)
copy cloudstack/{data_source_cloudstack_zone_test.go =>
data_source_cloudstack_role_test.go} (62%)
create mode 100644 cloudstack/resource_cloudstack_role.go
copy cloudstack/{resource_cloudstack_vpn_gateway_test.go =>
resource_cloudstack_role_test.go} (51%)
create mode 100644 website/docs/d/domain.html.markdown
create mode 100644 website/docs/d/role.html.markdown
create mode 100644 website/docs/r/role.html.markdown