Tom Keeber
Tom Keeber
Is there a way to get cfn-lint to ignore this issue? I'm suffering from this same problem; ```yaml Api: Type: AWS::Serverless::Api Properties: DefinitionBody: Fn::Transform: Name: AWS::Include Parameters: Location: resources/openapi.yaml ```...
Thanks @hugoduraes, but I do not currently have that defined
I'm also having problems with this. ``` ApiGatewayWebACLAssociation: Type: AWS::WAFRegional::WebACLAssociation Properties: ResourceArn: !Sub "arn:aws:apigateway:${AWS::Region}::/restapis/${ServerlessRestApi}/stages/${ServerlessRestApiProdStage}" WebACLId: !Ref WAFRegionalWebACLId Api: Type: AWS::Serverless::Api Properties: StageName: Prod ``` Fails when deployed. As does ```ApiGatewayWebACLAssociation:...
I solved this problem by removing the `AWS::Serverless::Api` completely and defining any of the properties i needed (in this case -> Auth) in a global ``` Api: EndpointConfiguration: REGIONAL Auth:...
Any update on this? Would great to make this easier. Ran into this problem again recently. If need to understand the inner of an abstraction (i.e SAM) in order to...
Is there any update on this issue? This is a major blocker for us adopting Secret Manager.