sst / ion

SST v3
https://sst.dev
MIT License
1.36k stars 176 forks source link

Docs: Tagging resources #253

Open jayair opened 4 months ago

jayair commented 4 months ago

Somebody shared an example with a transformation

https://discord.com/channels/983865673656705025/1177071497974648952/1229585338658197534

jayair commented 3 months ago

Here's how to do it in Pulumi: https://www.pulumi.com/blog/automatically-enforcing-aws-resource-tagging-policies/#automatically-applying-tags

From https://discord.com/channels/983865673656705025/1177071497974648952/1243307231794172166

wkm97 commented 1 month ago

If anyone want to tag all resources in aws, you can do it just through configuration in provider

providers: {
  aws: {
    region: "us-west-2",
    defaultTags: {
      tags: {
        "App": "SST ion application"
      }
    }
  }
}