Hi ,
I am trying to access a variable from another file using file reference in serverless, but it fails to access outside variable .
in serverless.yml
iamRoleStatements:
- Effect: "Allow"
Action:
- “dynamodb:*”
- "kms:Decrypt"
Resource: ${file(…/inputfile.yml:arnResource)
I want to get the arnResource value but I am not able to get it.
can some one please look into the issue.