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
cf-terraforming v0.12.0
I expect the output to be formatted such:
resource "cloudflare_tunnel" "terraform_managed_resource_tunnel_id" { account_id = "account_id" name = "tunnel_name" secret = "tunnel_secret" }
what is actually output
resource "cloudflare_tunnel" "terraform_managed_resource_tunnel_id" { account_id = "account_id" name = "tunnel_name" secret = "tunnel_token" }
NOTE: that we can run the "tunnel_token" through base64 -d to show that it's the token and not just a base64 looking secret
echo "tunnel_token" | base64 -d {"a":"account_id","t":"tunnel_id","s":"actual_tunnel_secret"}
cloudflare.tf
terraform { required_providers { cloudflare = { source = "cloudflare/cloudflare" version = "~> 4.0" } } } provider "cloudflare" { }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Confirmation
cf-terraforming version
cf-terraforming v0.12.0
Expected outcome
I expect the output to be formatted such:
Actual outcome
what is actually output
NOTE: that we can run the "tunnel_token" through base64 -d to show that it's the token and not just a base64 looking secret
echo "tunnel_token" | base64 -d
{"a":"account_id","t":"tunnel_id","s":"actual_tunnel_secret"}
Steps to reproduce
cloudflare.tf
cloudflare.tf
References
No response
The text was updated successfully, but these errors were encountered: