diff --git a/tests/aws_iam_policy_single_line.tf b/tests/aws_iam_policy_single_line.tf new file mode 100644 index 0000000..006978f --- /dev/null +++ b/tests/aws_iam_policy_single_line.tf @@ -0,0 +1,4 @@ + resource "aws_iam_policy" "example" { + # ... other configuration ... + policy = "{\"Version\": \"2012-10-17\", \"Statement\": {\"Effect\": \"Allow\", \"Action\": \"*\", \"Resource\": \"*\"}}" + }