We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Terraform Provider Version: v1.4.1
v1.4.1
Connect Server Version: n/a
CLI Version: 2.23.0-beta.01
2.23.0-beta.01
OS: 13.4.1
Terraform Version: 1.6.4
Provider throws an error when using with beta CLI version.
Error: failed to get version of op CLI: Version segment starts with 0 (input is: 2.23.0-beta.01)
It should work with with beta version.
v2.23.0-beta.01
main.tf
# main.tf provider "onepassword" { account = "your_account_email" op_cli_path = "/usr/local/bin/op" } resource "onepassword_item" "demo_login" { vault = "you_vault_uuid" title = "Demo Terraform Login" category = "login" username = "test@example.com" }
terraform init
terraform apply
semver package could not parse the cli beta version 2.23.0-beta.01 and threw an error.
semver
semver.NewVersion(versionString)
The problem is that 1Password CLI releases has . between beta and build number. The version without dot 2.23.0-beta01 is parsed correctly.
.
beta
build number
2.23.0-beta01
We need to find a workaround for that.
The text was updated successfully, but these errors were encountered:
So there is currently no way to use the terraform plugin in combination with the terraform module?
Sorry, something went wrong.
No branches or pull requests
Your environment
Terraform Provider Version:
v1.4.1
Connect Server Version: n/a
CLI Version:
2.23.0-beta.01
OS: 13.4.1
Terraform Version: 1.6.4
What happened?
Provider throws an error when using with beta CLI version.
What did you expect to happen?
It should work with with beta version.
Steps to reproduce
v2.23.0-beta.01
.main.tf
terraform init
terraform apply
Notes & Logs
semver
package could not parse the cli beta version2.23.0-beta.01
and threw an error.The problem is that 1Password CLI releases has
.
betweenbeta
andbuild number
. The version without dot2.23.0-beta01
is parsed correctly.We need to find a workaround for that.
The text was updated successfully, but these errors were encountered: