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
When a configuration contains a resource where the name is a format verb, the format verb is not replaced, causing HCL parsing to fail.
For example, in https://github.com/hashicorp/terraform-provider-aws/blob/38319aa13aea65d3e946450c1f881d8fef12e734/aws/resource_aws_quicksight_user_test.go#L195-L203
data "aws_caller_identity" "current" {} resource "aws_quicksight_user" %[1]q { aws_account_id = data.aws_caller_identity.current.account_id user_name = %[1]q email = %[2]q identity_type = "QUICKSIGHT" user_role = "READER" }
The line resource "aws_quicksight_user" %[1]q { should be replaced with something parseable as HCL
resource "aws_quicksight_user" %[1]q {
The line resource "aws_quicksight_user" %[1]q { is not changed, causing HCL parsing to fail
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When a configuration contains a resource where the name is a format verb, the format verb is not replaced, causing HCL parsing to fail.
For example, in https://github.com/hashicorp/terraform-provider-aws/blob/38319aa13aea65d3e946450c1f881d8fef12e734/aws/resource_aws_quicksight_user_test.go#L195-L203
Expected Result
The line
resource "aws_quicksight_user" %[1]q {
should be replaced with something parseable as HCLActual Result
The line
resource "aws_quicksight_user" %[1]q {
is not changed, causing HCL parsing to failThe text was updated successfully, but these errors were encountered: