This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/github.com/hashicorp/terraform-plugin-framework-1.15.1
in repository 
https://gitbox.apache.org/repos/asf/cloudstack-terraform-provider.git


 discard b3c0633  chore(deps): bump 
github.com/hashicorp/terraform-plugin-framework
     add 4eb6d4b  chore(deps): bump github.com/cloudflare/circl from 1.3.7 to 
1.6.1
     add 808d58a  Pin github actions version for opentofu
     add e0ebb87  Merge pull request #207 from shapeblue/pin-gha
     add ed7ac8c  rat + excludes and add licenses to other files (#200)
     add b4e5d6f  readme: add specific test instruction in readme (#211)
     add d131aa1  data: get vpc in project by project name (#209)
     add 8c28240  Support additional parameters for cloudstack_nic resource 
(#210)
     add 2d90b19  serviceoffering: add params for custom offering, storage 
tags, encryptroot (#212)
     add 2673fe4  Support desc and ruleId in create_network_acl_rule
     add fed2259  fix review comment
     add 1b1a9b8  change rule_id -> rule_number and add doc
     add 967a37d  add params in unit tests
     add 930d61e  verify description and rule_number in unit test
     add 1f868fe  use fields defined in schema
     add 38b6ed7  fix test verification sequence
     add da84245  handle review comments
     add 9fe0ac6  Merge pull request #203 from shapeblue/supportDesc
     add 17de0ab  Add support for additional optional parameters for creating 
network offerings (#205)
     add b8555b7  Add disk_offering & override_disk_offering to instance 
resource
     add 2282730  Update website/docs/r/instance.html.markdown
     add 540f8d0  Merge pull request #208 from 
shapeblue/add-diskoffering-instance-resource
     add 843a461  Allow specifying private end port & public end port for port 
forward rules
     add 5142e90  Update tests
     add cbb254b  Merge pull request #204 from apache/port-forward-add-end-ports
     add a8c34cd  Add `cloudstack_physicalnetwork` and some underlying 
additional resources (#201)
     add aba1fde  feat: add cidrlist parameter to loadbalancer rule (#147)
     add 5a87dd4  chore(deps): bump 
github.com/hashicorp/terraform-plugin-framework

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b3c0633)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/github.com/hashicorp/terraform-plugin-framework-1.15.1
 (5a87dd4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |  17 ++
 .github/workflows/acceptance.yml                   |   2 +-
 .github/workflows/rat.yaml                         |  36 +++
 .rat-excludes                                      |   9 +
 GNUmakefile                                        |  17 ++
 README.md                                          |  10 +-
 .../data_source_cloudstack_network_offering.go     | 109 +++++++-
 ...data_source_cloudstack_network_offering_test.go | 175 ++++++++++++
 .../data_source_cloudstack_physicalnetwork.go      | 140 ++++++++++
 ...data_source_cloudstack_physicalnetwork_test.go} |  46 ++--
 cloudstack/data_source_cloudstack_vpc.go           |   7 +
 cloudstack/provider.go                             |  82 +++---
 cloudstack/provider_v6.go                          |  17 ++
 .../resource_cloudstack_configuration_test.go      |  17 ++
 cloudstack/resource_cloudstack_instance.go         |  33 +++
 .../resource_cloudstack_loadbalancer_rule.go       |  25 ++
 .../resource_cloudstack_loadbalancer_rule_test.go  |   6 +
 cloudstack/resource_cloudstack_network_acl_rule.go |  31 +++
 .../resource_cloudstack_network_acl_rule_test.go   |  26 +-
 cloudstack/resource_cloudstack_network_offering.go | 257 ++++++++++++++++-
 ...resource_cloudstack_network_service_provider.go | 305 +++++++++++++++++++++
 ...rce_cloudstack_network_service_provider_test.go | 236 ++++++++++++++++
 cloudstack/resource_cloudstack_nic.go              |  14 +-
 cloudstack/resource_cloudstack_nic_test.go         |  91 +++++-
 cloudstack/resource_cloudstack_physicalnetwork.go  | 209 ++++++++++++++
 ...=> resource_cloudstack_physicalnetwork_test.go} |  82 +++---
 cloudstack/resource_cloudstack_port_forward.go     |  33 +++
 .../resource_cloudstack_port_forward_test.go       | 168 ++++++++++++
 cloudstack/resource_cloudstack_service_offering.go | 148 +++++++++-
 .../resource_cloudstack_service_offering_test.go   |  39 +++
 cloudstack/resource_cloudstack_traffic_type.go     | 282 +++++++++++++++++++
 .../resource_cloudstack_traffic_type_test.go       | 175 ++++++++++++
 go.mod                                             |  19 +-
 go.sum                                             |   4 +-
 website/docs/d/physicalnetwork.html.markdown       |  40 +++
 website/docs/d/vpc.html.markdown                   |   4 +-
 website/docs/r/instance.html.markdown              |  12 +
 website/docs/r/loadbalancer_rule.html.markdown     |   3 +
 website/docs/r/network_acl_rule.html.markdown      |   4 +
 website/docs/r/network_offering.html.markdown      |  32 ++-
 .../docs/r/network_service_provider.html.markdown  |  71 +++++
 website/docs/r/nic.html.markdown                   |  16 ++
 website/docs/r/physicalnetwork.html.markdown       |  40 +++
 website/docs/r/port_forward.html.markdown          |  10 +-
 website/docs/r/service_offering.html.markdown      |  20 ++
 website/docs/r/traffic_type.html.markdown          |  65 +++++
 46 files changed, 3028 insertions(+), 156 deletions(-)
 create mode 100644 .github/workflows/rat.yaml
 create mode 100644 .rat-excludes
 create mode 100644 cloudstack/data_source_cloudstack_physicalnetwork.go
 copy cloudstack/{data_source_cloudstack_zone_test.go => 
data_source_cloudstack_physicalnetwork_test.go} (56%)
 create mode 100644 cloudstack/resource_cloudstack_network_service_provider.go
 create mode 100644 
cloudstack/resource_cloudstack_network_service_provider_test.go
 create mode 100644 cloudstack/resource_cloudstack_physicalnetwork.go
 copy cloudstack/{resource_cloudstack_network_acl_test.go => 
resource_cloudstack_physicalnetwork_test.go} (50%)
 create mode 100644 cloudstack/resource_cloudstack_traffic_type.go
 create mode 100644 cloudstack/resource_cloudstack_traffic_type_test.go
 create mode 100644 website/docs/d/physicalnetwork.html.markdown
 create mode 100644 website/docs/r/network_service_provider.html.markdown
 create mode 100644 website/docs/r/physicalnetwork.html.markdown
 create mode 100644 website/docs/r/traffic_type.html.markdown

Reply via email to