This is an automated email from the ASF dual-hosted git repository. kiranchavala pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack-terraform-provider.git
from 6fbf6ff Merge pull request #158 from shapeblue/fixup-vm-details-update add d28388c zone wizard add a3089a8 Adding resources cloudstack_network_service_provider_state and cloudstack_vlan_ip_range add 8de7ffe sdk v2 updates add 63d9693 fix type enabled bool type add 28b488b updating storage pool test case add f24347b updating storage pool test case add 9190fa6 updating conflicting start_ip in ACC add 2cc91b9 updating pod fields from string to slice add 1c47c38 Adding schema descriptions add b70cce4 rebase add 4e32403 fix formatting add ff6d28f physical network conflicts add 7e688e6 traffic type conflicts add 3e877e2 update tests add 2003ec4 updates add 573b89a updates add da04d93 updates add 522a08a updates add 07a83b5 updates add ae52fee updates new 460bfef Merge pull request #67 from poddm/zonewizard The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: ... => data_source_cloudstack_physical_network.go} | 0 ...ata_source_cloudstack_physical_network_test.go} | 15 +- cloudstack/provider.go | 92 ++++--- cloudstack/resource_cloudstack_cluster.go | 262 ++++++++++++++++++ ...test.go => resource_cloudstack_cluster_test.go} | 44 +-- ...ce_cloudstack_network_service_provider_state.go | 219 +++++++++++++++ ...oudstack_network_service_provider_state_test.go | 133 ++++++++++ ...rce_cloudstack_network_service_provider_test.go | 12 +- ....go => resource_cloudstack_physical_network.go} | 159 +++++------ ...> resource_cloudstack_physical_network_test.go} | 10 +- cloudstack/resource_cloudstack_pod.go | 171 ++++++++++++ cloudstack/resource_cloudstack_pod_test.go | 83 ++++++ .../resource_cloudstack_secondary_storage.go | 118 +++++++++ ... resource_cloudstack_secondary_storage_test.go} | 29 +- cloudstack/resource_cloudstack_storage_pool.go | 215 +++++++++++++++ .../resource_cloudstack_storage_pool_test.go | 123 +++++++++ cloudstack/resource_cloudstack_traffic_type.go | 105 +++++--- .../resource_cloudstack_traffic_type_test.go | 10 +- cloudstack/resource_cloudstack_vlan_ip_range.go | 295 +++++++++++++++++++++ .../resource_cloudstack_vlan_ip_range_test.go | 114 ++++++++ cloudstack/resource_cloudstack_zone.go | 212 ++++++++++++--- ...le_test.go => resource_cloudstack_zone_test.go} | 45 ++-- go.sum | 2 +- website/docs/r/cluster.html.markdown | 67 +++++ .../r/network_service_provider_state.html.markdown | 80 ++++++ website/docs/r/physical_network.html.markdown | 56 ++++ website/docs/r/physicalnetwork.html.markdown | 40 --- website/docs/r/pod.html.markdown | 56 ++++ website/docs/r/secondary_storage.html.markdown | 51 ++++ website/docs/r/storage_pool.html.markdown | 60 +++++ website/docs/r/vlan_ip_range.html.markdown | 86 ++++++ 31 files changed, 2640 insertions(+), 324 deletions(-) rename cloudstack/{data_source_cloudstack_physicalnetwork.go => data_source_cloudstack_physical_network.go} (100%) rename cloudstack/{data_source_cloudstack_physicalnetwork_test.go => data_source_cloudstack_physical_network_test.go} (83%) create mode 100644 cloudstack/resource_cloudstack_cluster.go copy cloudstack/{data_source_cloudstack_service_offering_test.go => resource_cloudstack_cluster_test.go} (56%) create mode 100644 cloudstack/resource_cloudstack_network_service_provider_state.go create mode 100644 cloudstack/resource_cloudstack_network_service_provider_state_test.go rename cloudstack/{resource_cloudstack_physicalnetwork.go => resource_cloudstack_physical_network.go} (55%) rename cloudstack/{resource_cloudstack_physicalnetwork_test.go => resource_cloudstack_physical_network_test.go} (94%) create mode 100644 cloudstack/resource_cloudstack_pod.go create mode 100644 cloudstack/resource_cloudstack_pod_test.go create mode 100644 cloudstack/resource_cloudstack_secondary_storage.go copy cloudstack/{data_source_cloudstack_pod_test.go => resource_cloudstack_secondary_storage_test.go} (68%) create mode 100644 cloudstack/resource_cloudstack_storage_pool.go create mode 100644 cloudstack/resource_cloudstack_storage_pool_test.go create mode 100644 cloudstack/resource_cloudstack_vlan_ip_range.go create mode 100644 cloudstack/resource_cloudstack_vlan_ip_range_test.go copy cloudstack/{data_source_cloudstack_role_test.go => resource_cloudstack_zone_test.go} (56%) create mode 100644 website/docs/r/cluster.html.markdown create mode 100644 website/docs/r/network_service_provider_state.html.markdown create mode 100644 website/docs/r/physical_network.html.markdown delete mode 100644 website/docs/r/physicalnetwork.html.markdown create mode 100644 website/docs/r/pod.html.markdown create mode 100644 website/docs/r/secondary_storage.html.markdown create mode 100644 website/docs/r/storage_pool.html.markdown create mode 100644 website/docs/r/vlan_ip_range.html.markdown