Skip to content
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

Update terraform version to 0.11.7 #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Terraform, allowing for the management and lookup of sections, VLANs, subnets,
and IP addresses, entirely within Terraform.

[3]: https://phpipam.net/api/api_documentation/
[4]: https://github.com/paybyphone/phpipam-sdk-go
[4]: https://github.com/youkoulayley/phpipam-sdk-go

## Installing

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/plugin"
"github.com/paybyphone/terraform-provider-phpipam/plugin/providers/phpipam"
"github.com/youkoulayley/terraform-provider-phpipam/plugin/providers/phpipam"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions plugin/providers/phpipam/address_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strconv"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/addresses"
"github.com/paybyphone/phpipam-sdk-go/phpipam"
"github.com/youkoulayley/phpipam-sdk-go/controllers/addresses"
"github.com/youkoulayley/phpipam-sdk-go/phpipam"
)

// resourceAddressOptionalFields represents all the fields that are optional in
Expand Down
12 changes: 6 additions & 6 deletions plugin/providers/phpipam/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package phpipam
import (
"log"

"github.com/paybyphone/phpipam-sdk-go/controllers/addresses"
"github.com/paybyphone/phpipam-sdk-go/controllers/sections"
"github.com/paybyphone/phpipam-sdk-go/controllers/subnets"
"github.com/paybyphone/phpipam-sdk-go/controllers/vlans"
"github.com/paybyphone/phpipam-sdk-go/phpipam"
"github.com/paybyphone/phpipam-sdk-go/phpipam/session"
"github.com/youkoulayley/phpipam-sdk-go/controllers/addresses"
"github.com/youkoulayley/phpipam-sdk-go/controllers/sections"
"github.com/youkoulayley/phpipam-sdk-go/controllers/subnets"
"github.com/youkoulayley/phpipam-sdk-go/controllers/vlans"
"github.com/youkoulayley/phpipam-sdk-go/phpipam"
"github.com/youkoulayley/phpipam-sdk-go/phpipam/session"
)

// Config provides the configuration for the PHPIPAM provider.
Expand Down
6 changes: 3 additions & 3 deletions plugin/providers/phpipam/custom_field_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"regexp"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/addresses"
"github.com/paybyphone/phpipam-sdk-go/controllers/subnets"
"github.com/paybyphone/phpipam-sdk-go/controllers/vlans"
"github.com/youkoulayley/phpipam-sdk-go/controllers/addresses"
"github.com/youkoulayley/phpipam-sdk-go/controllers/subnets"
"github.com/youkoulayley/phpipam-sdk-go/controllers/vlans"
)

// customFieldFilterSchema returns a *schema.Schema for the custom_field_filter
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/data_source_phpipam_address.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/addresses"
"github.com/youkoulayley/phpipam-sdk-go/controllers/addresses"
)

func dataSourcePHPIPAMAddress() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/data_source_phpipam_section.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/sections"
"github.com/youkoulayley/phpipam-sdk-go/controllers/sections"
)

func dataSourcePHPIPAMSection() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/data_source_phpipam_subnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/subnets"
"github.com/youkoulayley/phpipam-sdk-go/controllers/subnets"
)

func dataSourcePHPIPAMSubnet() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/data_source_phpipam_vlan.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/vlans"
"github.com/youkoulayley/phpipam-sdk-go/controllers/vlans"
)

func dataSourcePHPIPAMVLAN() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/resource_phpipam_address.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/phpipam"
"github.com/youkoulayley/phpipam-sdk-go/phpipam"
)

// resourcePHPIPAMAddress returns the resource structure for the phpipam_address
Expand Down
4 changes: 2 additions & 2 deletions plugin/providers/phpipam/section_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"strconv"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/sections"
"github.com/paybyphone/phpipam-sdk-go/phpipam"
"github.com/youkoulayley/phpipam-sdk-go/controllers/sections"
"github.com/youkoulayley/phpipam-sdk-go/phpipam"
)

// resourceSectionOptionalFields represents all the fields that are optional in
Expand Down
4 changes: 2 additions & 2 deletions plugin/providers/phpipam/subnet_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/subnets"
"github.com/paybyphone/phpipam-sdk-go/phpipam"
"github.com/youkoulayley/phpipam-sdk-go/controllers/subnets"
"github.com/youkoulayley/phpipam-sdk-go/phpipam"
)

// resourceSubnetOptionalFields represents all the fields that are optional in
Expand Down
2 changes: 1 addition & 1 deletion plugin/providers/phpipam/vlan_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strconv"

"github.com/hashicorp/terraform/helper/schema"
"github.com/paybyphone/phpipam-sdk-go/controllers/vlans"
"github.com/youkoulayley/phpipam-sdk-go/controllers/vlans"
)

// resourceVLANOptionalFields represents all the fields that are optional in
Expand Down
36 changes: 36 additions & 0 deletions vendor/github.com/agext/levenshtein/DCO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

201 changes: 201 additions & 0 deletions vendor/github.com/agext/levenshtein/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/github.com/agext/levenshtein/MAINTAINERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions vendor/github.com/agext/levenshtein/NOTICE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading