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

feat: bump terraform provider version and add resources #82

Merged
merged 6 commits into from
Jun 28, 2024
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-lint-

- name: Vendor Dependencies
run: make modules.download modules.check
run: make vendor vendor.check

# We could run 'make lint' but we prefer this action because it leaves
# 'annotations' (i.e. it comments on PRs to point out linter violations).
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-check-diff-

- name: Vendor Dependencies
run: make modules.download modules.check
run: make vendor vendor.check

- name: Check Diff
run: make check-diff
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make modules.download modules.check
run: make vendor vendor.check

- name: Run Unit Tests
run: make -j2 test
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make modules.download modules.check
run: make vendor vendor.check

- name: Deploying locally built provider package
run: make local-deploy
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-publish-artifacts-

- name: Vendor Dependencies
run: make modules.download modules.check
run: make vendor vendor.check

- name: Build Artifacts
run: make -j2 build.all
Expand Down
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export TERRAFORM_VERSION := 1.3.3

export TERRAFORM_PROVIDER_SOURCE := scaleway/scaleway
export TERRAFORM_PROVIDER_REPO := https://github.com/scaleway/terraform-provider-scaleway
export TERRAFORM_PROVIDER_VERSION := 2.34.0
export TERRAFORM_PROVIDER_VERSION := 2.41.0
export TERRAFORM_PROVIDER_DOWNLOAD_NAME := terraform-provider-scaleway
export TERRAFORM_NATIVE_PROVIDER_BINARY := terraform-provider-scaleway_v2.34.0
export TERRAFORM_NATIVE_PROVIDER_BINARY := terraform-provider-scaleway_v2.41.0
export TERRAFORM_DOCS_PATH := docs/resources

PLATFORMS ?= linux_amd64 linux_arm64
Expand Down Expand Up @@ -200,6 +200,3 @@ crossplane.help:
help-special: crossplane.help

.PHONY: crossplane.help help-special

vendor: modules.download
vendor.check: modules.check
3 changes: 1 addition & 2 deletions apis/applesilicon/v1alpha1/zz_server_types.go

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

13 changes: 13 additions & 0 deletions apis/block/v1alpha1/zz_generated.conversion_hubs.go

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

Loading
Loading