Skip to content

Updated CreateVPCParams call (as per 4.20 API changes) #191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cloudstack/resource_cloudstack_vpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,10 @@

// Create a new parameter struct
p := cs.VPC.NewCreateVPCParams(
d.Get("cidr").(string),
displaytext.(string),
name,
vpcofferingid,
zoneid,

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / build

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.12.* with Cloudstack 4.19.0.1

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.8.* with Cloudstack 4.19.0.1

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.11.* with Cloudstack 4.19.1.3

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.9.* with Cloudstack 4.20.1.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.9.* with Cloudstack 4.19.1.3

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.12.* with Cloudstack 4.19.1.3

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.11.* with Cloudstack 4.19.3.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.12.* with Cloudstack 4.19.3.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.12.* with Cloudstack 4.20.1.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.8.* with Cloudstack 4.20.1.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.12.* with Cloudstack 4.19.2.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.8.* with Cloudstack 4.19.1.3

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.11.* with Cloudstack 4.19.2.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.9.* with Cloudstack 4.19.3.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.9.* with Cloudstack 4.19.2.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.8.* with Cloudstack 4.19.2.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.11.* with Cloudstack 4.20.1.0

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / Terraform 1.11.* with Cloudstack 4.19.0.1

not enough arguments in call to cs.VPC.NewCreateVPCParams

Check failure on line 123 in cloudstack/resource_cloudstack_vpc.go

View workflow job for this annotation

GitHub Actions / OpenTofu 1.8.* with Cloudstack 4.19.3.0

not enough arguments in call to cs.VPC.NewCreateVPCParams
)

// If there is a network domain supplied, make sure to add it to the request
Expand Down
Loading