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

Sync monorepo state at "bump terraform provider version" #60

Merged
merged 1 commit into from
Sep 12, 2024
Merged
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
5 changes: 2 additions & 3 deletions internal/cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ func writeTerraformRC(ctx context.Context, rcPath string, tfProviderDevDirPath s

func genTerraform(ctx context.Context, mfestPath string, mfest *manifest.Manifest, fqtn string, resources *[]liveresource.Resource, tfDir string, tfProviderVersionConstraint string) {
if tfProviderVersionConstraint == "" {
// Require at least v0.1.7 for support for column retention duration settings,
// column constraints, data types, and other new features
tfProviderVersionConstraint = ">= 0.1.7"
// Require at least v0.1.8 for support for column search indexing
tfProviderVersionConstraint = ">= 0.1.8"
}
tfText, err := tfconfig.GenConfig(&tfconfig.GenerationContext{
ManifestFilePath: mfestPath,
Expand Down