We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6f880 commit f283262Copy full SHA for f283262
.github/workflows/main.yml
@@ -75,6 +75,13 @@ jobs:
75
pip install --upgrade pip
76
pip install -r requirements.txt
77
78
+ - name: Apply Terraform Plugin Sdk Patch
79
+ run: |
80
+ cd terraform-provider-aws
81
+ sdk_version=$(go list -m github.com/hashicorp/terraform-plugin-sdk/v2 | sed -n -e 's/^.* //p')
82
+ go mod edit --replace github.com/hashicorp/terraform-plugin-sdk/v2=github.com/cloutierMat/terraform-plugin-sdk/v2@${sdk_version}
83
+ go mod tidy
84
+
85
- name: Patch Terraform Provider
86
run: |
87
source .venv/bin/activate
0 commit comments