Compare commits

...
12 Commits
Author SHA1 Message Date
beatzaplenty 12b8f2460d remove version constraints for terraform and provider in examples
ci / test (push) Failing after 5m47s
2026-05-13 05:01:38 +10:00
beatzaplenty c418039617 Merge remote-tracking branch 'origin/codex/prepare-terraform-provider-for-public-registry' 2026-05-13 04:10:52 +10:00
beatzaplenty 53ffb89eed Merge branch 'codex/prepare-terraform-provider-for-public-registry' of https://github.com/beatz174-bit/terraform-dynu-provider into codex/prepare-terraform-provider-for-public-registry 2026-05-13 04:08:00 +10:00
beatzaplenty 95bcee16f1 changed terraform format check to just run the format command 2026-05-13 04:06:44 +10:00
beatz174-bit 6a051d9c89 Update ci.yml 2026-05-13 04:04:18 +10:00
beatzaplenty e220eed917 change terraform fmt command to run format and not check it. 2026-05-13 03:59:21 +10:00
beatzaplenty bc8971b456 added .key to .gitignore 2026-05-13 03:57:41 +10:00
beatzaplenty 80116cfa52 updated ci action to go ver 6 and added .key to gitignore 2026-05-13 03:57:14 +10:00
beatz174-bit 69bc53f018 Merge pull request #56 from beatz174-bit/codex/fix-codex-review-issues-for-pr-#55
Follow-up: exclude unsupported darwin/arm GoReleaser build target
2026-05-13 03:36:39 +10:00
beatz174-bit 26db375b38 Fix unsupported darwin/arm release target 2026-05-13 03:35:19 +10:00
beatzaplenty 054394f3b2 moved to registry provider ver 0.2.0 2026-05-12 19:12:46 +10:00
beatz174-bit ace79751a9 Merge pull request #55 from beatz174-bit/codex/prepare-terraform-provider-for-public-registry
Prepare provider for public Terraform Registry publishing
2026-05-12 18:44:23 +10:00
6 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v6
with: with:
go-version-file: go.mod go-version-file: go.mod
@@ -36,8 +36,8 @@ jobs:
- name: Go tests - name: Go tests
run: go test ./... run: go test ./...
- name: Terraform fmt check - name: Terraform fmt
run: terraform fmt -check -recursive examples run: terraform fmt -recursive examples
- name: Repository quality gate - name: Repository quality gate
run: ./scripts/check.sh run: ./scripts/check.sh
+1
View File
@@ -4,6 +4,7 @@
*.dll *.dll
*.so *.so
*.dylib *.dylib
*.key
terraform-provider-dynu terraform-provider-dynu
terraform-provider-dynu_v* terraform-provider-dynu_v*
dist/ dist/
+2
View File
@@ -30,6 +30,8 @@ builds:
ignore: ignore:
- goos: darwin - goos: darwin
goarch: "386" goarch: "386"
- goos: darwin
goarch: arm
- goos: windows - goos: windows
goarch: arm goarch: arm
@@ -4,7 +4,6 @@ terraform {
required_providers { required_providers {
dynu = { dynu = {
source = "beatz174-bit/dynu" source = "beatz174-bit/dynu"
version = "~> 0.1.0"
} }
} }
} }
+1 -1
View File
@@ -2,7 +2,7 @@ terraform {
required_providers { required_providers {
dynu = { dynu = {
source = "beatz174-bit/dynu" source = "beatz174-bit/dynu"
version = "~> 0.1.0" # version = "~> 0.2.0"
} }
} }
} }
-1
View File
@@ -4,7 +4,6 @@ terraform {
required_providers { required_providers {
dynu = { dynu = {
source = "beatz174-bit/dynu" source = "beatz174-bit/dynu"
version = "~> 0.1.0"
} }
} }
} }