nbcchen
nbcchen
@Marcosl14 Did you have serverless.yml and tsconfig.json in different locations? I do and I can't make it work at all
You can write a custom plugin ```javascript this.serverless.getProvider('aws').request( 'APIGateway', 'tagResource', { resourceArn: '...' }) ``` Note that CloudFormation automatically adds tags also (https://github.com/serverless/serverless/issues/9223). If you want to retain those tags,...
You can create a custom Serverless plugin and make a CloudWatchLogs:tagResource request
> I'm running ADOT on ECS Fargate and passing the custom collector config via a parameter in the AWS Parameter store as explained [here](https://aws-otel.github.io/docs/setup/ecs/config-through-ssm) > > I need to be...
You can write a Serverless plugin to add tags back to the deployed objects retrospectively. ```javascript this._provider .request('CloudFormation', 'listStackResources', { StackName: stackName }) .then(result => { if (result) { const...
You can create the CNAME with CloudFormation https://github.com/awsdocs/aws-cloudformation-user-guide/blob/main/doc_source/quickref-route53.md https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordset.html
@franciscocpg I tried the [custom bucket configuration](https://serverless.com/framework/docs/providers/aws/events/s3#custom-bucket-configuration) and it's not even creating the S3 bucket for me anymore with this syntax ``` provider: s3: Bucket1 ```
doesn't add the tags to s3 buckets created under `provider:s3` https://www.serverless.com/framework/docs/providers/aws/events/s3