rubendob

Results 3 comments of rubendob
trafficstars

Sure @jsoucheiron ``` AWSTemplateFormatVersion: '2010-09-09' Transform: 'AWS::Serverless-2016-10-31' Parameters: Token: Description: 'Token' Type: 'AWS::SSM::Parameter::Value' Default: '/some/path' ProjectName: Type: String Environment: Type: String Globals: Function: Tags: Env: Ref: Environment Project: Ref: ProjectName...

Thanks @jsoucheiron what I did is remove the Global section from the template ``` Globals: Function: Tags: Env: Ref: Environment Project: Ref: ProjectName ``` then I can see the normal...

Thanks Joshua Rubén Ortiz [image: http://]www.rubenortiz.es On Wed, Apr 17, 2024 at 3:49 PM Joshua ***@***.***> wrote: > There are likely various trustworthy guides on the Internet (I searched >...