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

Add support for OpenTofu v1.6 #55

Merged
merged 1 commit into from
Jan 14, 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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
opentofu:
- 1.6.0-alpha3
- 1.6.0
env:
OPENTOFU_VERSION: ${{ matrix.opentofu }}
TFSCHEMA_TF_MODE: opentofu
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ brews:
name: "Masayuki Morita"
email: [email protected]
homepage: https://github.com/minamijoyo/tfschema
description: "A schema inspector for Terraform providers."
description: "A schema inspector for Terraform / OpenTofu providers."
skip_upload: auto
test: |
system "#{bin}/tfschema --version"
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
[![GitHub release](https://img.shields.io/github/release/minamijoyo/tfschema.svg)](https://github.com/minamijoyo/tfschema/releases/latest)
[![GoDoc](https://godoc.org/github.com/minamijoyo/tfschema/tfschema?status.svg)](https://godoc.org/github.com/minamijoyo/tfschema)

A schema inspector for Terraform providers.
A schema inspector for Terraform / OpenTofu providers.

# Features

- Get resource type definitions dynamically from Terraform providers via go-plugin protocol.
- Get resource type definitions dynamically from Terraform / OpenTofu providers via go-plugin protocol.
- List available resource types.
- Autocomplete resource types in bash/zsh.
- Open official provider documents quickly by your system web browser.
- Terraform v0.15 support (minimum requirements: Terraform >= v0.12)
- Terraform v0.15+ support (minimum requirements: Terraform >= v0.12)
- OpenTofu v1.6+ support

![demo](/images/tfschema-demo.gif)

Expand Down