Skip to content

Commit

Permalink
Transfers project to d2iq-dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
faiq committed Dec 1, 2020
1 parent 6841260 commit 1d684af
Show file tree
Hide file tree
Showing 64 changed files with 78 additions and 1,710 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ terraform.tfstate
bin/
dist/
modules-dev/
vendor/
/pkg/
website/.vagrant
website/.bundle
Expand All @@ -27,6 +28,7 @@ website/node_modules
*.iml
log.txt
markdown-link-check*.txt
terraform-provider-aws-spot-instance
website/vendor

# Test exclusions
Expand Down
2 changes: 1 addition & 1 deletion aws/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ import (
"github.com/aws/aws-sdk-go/service/workmail"
"github.com/aws/aws-sdk-go/service/workspaces"
"github.com/aws/aws-sdk-go/service/xray"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
awsbase "github.com/hashicorp/aws-sdk-go-base"
"github.com/hashicorp/terraform-plugin-sdk/helper/logging"
)
Expand Down
4 changes: 2 additions & 2 deletions aws/ec2_filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
tfec2 "github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
tfec2 "github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion aws/internal/keyvaluetags/generators/createtags/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"text/template"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

const filename = `create_tags_gen.go`
Expand Down
2 changes: 1 addition & 1 deletion aws/internal/keyvaluetags/generators/gettag/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"text/template"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

const filename = `get_tag_gen.go`
Expand Down
2 changes: 1 addition & 1 deletion aws/internal/keyvaluetags/generators/listtags/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"text/template"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

const filename = `list_tags_gen.go`
Expand Down
2 changes: 1 addition & 1 deletion aws/internal/keyvaluetags/generators/servicetags/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"text/template"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

const filename = `service_tags_gen.go`
Expand Down
2 changes: 1 addition & 1 deletion aws/internal/keyvaluetags/generators/updatetags/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"text/template"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

const filename = `update_tags_gen.go`
Expand Down
2 changes: 1 addition & 1 deletion aws/internal/service/ec2/finder/finder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package finder
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
tfec2 "github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
tfec2 "github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
)

func ClientVpnAuthorizationRule(conn *ec2.EC2, endpointID, targetNetworkCidr, accessGroupID string) (*ec2.DescribeClientVpnAuthorizationRulesOutput, error) {
Expand Down
4 changes: 2 additions & 2 deletions aws/internal/service/ec2/waiter/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
tfec2 "github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/service/ec2/finder"
tfec2 "github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/service/ec2"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/service/ec2/finder"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

Expand Down
2 changes: 1 addition & 1 deletion aws/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/terraform"

"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
)

// Provider returns a terraform.ResourceProvider.
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_config_config_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/configservice"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/hashicorp/terraform-plugin-sdk/helper/hashcode"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/arn"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/hashicorp/terraform-plugin-sdk/helper/hashcode"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_spot_instance_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
Expand Down
2 changes: 1 addition & 1 deletion aws/tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package aws
import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/faiq/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/d2iq-dispatch/terraform-provider-aws-spot-instance/aws/internal/keyvaluetags"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)

Expand Down
57 changes: 0 additions & 57 deletions awsproviderlint/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions awsproviderlint/helper/awsprovidertype/keyvaluetags/funcs.go

This file was deleted.

28 changes: 0 additions & 28 deletions awsproviderlint/helper/awsprovidertype/keyvaluetags/package.go

This file was deleted.

This file was deleted.

This file was deleted.

18 changes: 0 additions & 18 deletions awsproviderlint/main.go

This file was deleted.

Loading

0 comments on commit 1d684af

Please sign in to comment.