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

Receiving "initialising" and "initializing" in the same error message #35536

Open
stractenberg-hashi opened this issue Aug 5, 2024 · 3 comments · May be fixed by #35655
Open

Receiving "initialising" and "initializing" in the same error message #35536

stractenberg-hashi opened this issue Aug 5, 2024 · 3 comments · May be fixed by #35655
Labels
bug new new issue not yet triaged

Comments

@stractenberg-hashi
Copy link

Terraform Version

Terraform v1.9.2
on darwin_arm64
+ provider registry.terraform.io/hashicorp/vault v4.3.0

Terraform Configuration Files

terraform {
  required_providers {
    vault = {
      source  = "hashicorp/vault"
      version = "4.3.0"
    }
  }
}

provider "vault" {
  address          = #var.address
  token            = var.vault_token
  skip_child_token = true
}

resource "vault_kv_secret_v2" "secret" {
  namespace = "some/specific/path"
  mount     = "kv_1"
  name      = "secret"
  data_json = jsonencode(
    {
      hello = "Welcome to Vault"
    }
  )
}

Debug Output

https://gist.github.com/stractenberg-hashi/55fcf404347848d2964c93ad9f5a4920

Expected Behavior

It should use the word "initialised" OR "initialized" throughout the error message. Instead it uses each word.

Actual Behavior

It uses both "initialised" AND "initialized" in the error message

Steps to Reproduce

  1. terraform init

Additional Context

Note that the Vault provider address value is commented out. I came across this because I was editing code and my save didn't take effect before I ran INIT. So this shouldn't be too common, but it is still strange that it uses both words in the error message.

References

No response

@stractenberg-hashi stractenberg-hashi added bug new new issue not yet triaged labels Aug 5, 2024
@crw
Copy link
Contributor

crw commented Aug 6, 2024

Thanks for this report!

@princejha95
Copy link

@crw Can you please assign this issue to me ?

@princejha95
Copy link

Also, I am planning to use Initialized since it is American English and is used more often in the industry than the former. Please let me know if you think otherwise

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug new new issue not yet triaged
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants