Add support for [heredoc config](https://www.terraform.io/language/expressions/strings#heredoc-strings), to allow json documents to be passed for iam config, eg
role_json: >
<<EOT
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOT