Skip to content

Commit

Permalink
Release v0.10.2 (#324)
Browse files Browse the repository at this point in the history
* version bump

* DUPLO-9494 azure vm disk size (#312)

* add 128gb default for disk size

* update docs

* update example

---------

Co-authored-by: --unset <--unset>

* DUPLO-11390 data "duplocloud_tenant-config" fixed (#313)

* fix tenantId bug

* remove newline

---------

Co-authored-by: --unset <--unset>

* more updates (#314)

Co-authored-by: --unset <--unset>

* DUPLO-11564 add metadata service option to example (#310)

* add metadata service option to example

* update example

* update example

* PR comments

---------

Co-authored-by: --unset <--unset>

* DUPLO-8877 external_port is now optional, sometimes (#311)

* wip

* update logic and docs

* cleanup

---------

Co-authored-by: --unset <--unset>

* intergration test (#315)

Co-authored-by: David Diaz <139073216+ddiaz-duplo@users.noreply.github.com>

* DUPLO-11605: support newest pod placement flags (#316)

* DUPLO-11625: Unable to generate docs (#317)

* upgrade doc gen tools

* generate new docs

* upgrade doc tools again

* generate new docs

* update plugin sdk

* set id for state (#318)

* DUPLO-11338 support ImageConfig for lambda functions (#304)

* continue when not unavailable after RDS update (#319)

* upgrade hashicorp dependencies

* updated docs

* version bump

* bump go version

* version bump

* EnableECSCluster -> EnableECS (#321)

Co-authored-by: --unset <--unset>

* fix go version specifications

---------

Co-authored-by: David Diaz <139073216+ddiaz-duplo@users.noreply.github.com>
Co-authored-by: pravin-duplocloud <57933252+pravin-duplocloud@users.noreply.github.com>
Co-authored-by: Joe Khoobyar <79105007+joek-duplo@users.noreply.github.com>
Co-authored-by: Joe Khoobyar <joe@duplocloud.net>
  • Loading branch information
5 people authored Sep 29, 2023
1 parent 6510b02 commit 929e23d
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '^1.20.0'
cache: false
-
name: Run linting
Expand All @@ -36,7 +36,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '^1.20.0'
cache: false
-
name: Run formatting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '^1.20.0'
-
name: Run tests
run: make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20
go-version: '^1.20.0'
-
name: Run tests
run: make test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ NAMESPACE=duplocloud

NAME=duplocloud
BINARY=terraform-provider-${NAME}
VERSION=0.9.47
VERSION=0.9.48
#mac
#OS_ARCH=darwin_amd64
#OS_ARCH=linux_amd64
Expand Down
2 changes: 1 addition & 1 deletion duplosdk/infrastructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ type DuploInfrastructureSettingUpdateRequest struct {

// DuploInfrastructureECSConfigUpdate represents a request to update a Duplo infrastructure's ECS cluster
type DuploInfrastructureECSConfigUpdate struct {
EnableECSCluster bool `json:"EnableECSCluster"`
EnableECSCluster bool `json:"EnableECS"`
EnableContainerInsights bool `json:"EnableContainerInsights"`
}

Expand Down
2 changes: 1 addition & 1 deletion examples/aws-integration/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
aws = {
Expand Down
2 changes: 1 addition & 1 deletion examples/ecs/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/eks-integration/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
aws = {
Expand Down
2 changes: 1 addition & 1 deletion examples/emr/files/emr_auto_scaling/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/emr/files/emr_spot/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/emr/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/ephemeral-storage/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/infrastructure/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/k8/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/service/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
duplocloud = {
version = "0.9.47" # RELEASE VERSION
version = "0.9.48" # RELEASE VERSION
source = "registry.terraform.io/duplocloud/duplocloud"
}
}
Expand Down

0 comments on commit 929e23d

Please sign in to comment.