-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
ci(provider): use hashicorp/setup-terraform
in tfproviderdocs check
#39510
Conversation
Community NoteVoting for Prioritization
For Submitters
|
% grep 'terraform ' .github/workflows/*.yml
.github/workflows/examples.yml: # Needed to use the output of `terraform validate -json`
.github/workflows/examples.yml: terraform init
.github/workflows/examples.yml: terraform fmt -check
.github/workflows/examples.yml: terraform validate
.github/workflows/provider.yml: name: terraform providers schema
.github/workflows/provider.yml: name: terraform init
.github/workflows/provider.yml: terraform init -plugin-dir terraform-plugin-dir
.github/workflows/provider.yml: name: terraform providers schema
.github/workflows/provider.yml: terraform providers schema -json > terraform-providers-schema/schema.json
.github/workflows/provider.yml: terraform -v
.github/workflows/resource-counts.yml: terraform {
.github/workflows/resource-counts.yml: - run: terraform init
.github/workflows/resource-counts.yml: datasources=$(terraform providers schema -json | jq '.provider_schemas[] .data_source_schemas | length')
.github/workflows/resource-counts.yml: resources=$(terraform providers schema -json | jq '.provider_schemas[] .resource_schemas | length') It looks like the Resource Counts workflow also needs |
The default ubuntu image no longer includes Terraform by default. We now need to install it at runtime instead.
c3c0dea
to
23c5023
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
This functionality has been released in v5.70.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
The default ubuntu image no longer includes Terraform by default. We now need to install it at runtime instead.
Relations
Closes #39501
Relates actions/runner-images#10636