docs: update tier tags from free to hobby plan#514
docs: update tier tags from free to hobby plan#514quetzalliwrites wants to merge 2 commits intomainfrom
Conversation
Deploying localstack-docs with
|
| Latest commit: |
821e569
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://272710d4.localstack-docs.pages.dev |
| Branch Preview URL: | https://docs-tier-tags-updates.localstack-docs.pages.dev |
|
tags aren't showing, ty to @remotesynth for looking into how the tags component works tmw am ❤️ sample url: |
There was a problem hiding this comment.
Thanks a lot for jumping on updating the docs! I just had a quick look into the codebase on the branch, and I think there are a few references to the free plan left waiting for an update:
Scripts generating pages
┌──────────────────────────────┬──────┬──────────────────┐
│ File │ Line │ Reference │
├──────────────────────────────┼──────┼──────────────────┤
│ scripts/generate_cli_docs.py │ 205 │ 'tags: ["Free"]' │
└──────────────────────────────┴──────┴──────────────────┘
Component logic
┌────────────────────────────────────────────┬───────────┬────────────────────────────────┐
│ File │ Lines │ Purpose │
├────────────────────────────────────────────┼───────────┼────────────────────────────────┤
│ src/components/PageSidebarWithBadges.astro │ 11, 23-25 │ Checks for 'Free' in plan tags │
└────────────────────────────────────────────┴───────────┴────────────────────────────────┘
Page frontmatter tags
┌────────────────────────────────────────────────────────────────────────────────┬──────┐
│ File │ Line │
├────────────────────────────────────────────────────────────────────────────────┼──────┤
│ src/content/docs/aws/tooling/vscode-extension.md │ 5 │
├────────────────────────────────────────────────────────────────────────────────┼──────┤
│ src/content/docs/aws/tooling/testing-utils.md │ 5 │
├────────────────────────────────────────────────────────────────────────────────┼──────┤
│ src/content/docs/aws/tooling/extensions/mailhog.md │ 7 │
├────────────────────────────────────────────────────────────────────────────────┼──────┤
│ src/content/docs/aws/capabilities/security-testing/custom-tls-certificates.mdx │ 5 │
└────────────────────────────────────────────────────────────────────────────────┴──────┘
Content mentioning "Free" plan
┌────────────────────────────────────────────────────────────────┬─────────┬──────────────────────────────────────────────┐
│ File │ Line │ Context │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/services/ses.mdx │ 18 │ "Users on Free plan can use..." │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/services/redshift.mdx │ 19 │ "Users on Free plan can use..." │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/services/apigateway.mdx │ 17 │ "...in the Free plan, and API Gateway V2..." │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/tooling/extensions/index.md │ 10 │ "...including Free, and is ideal..." │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/tooling/extensions/extensions-library.md │ 15 │ "...including Free, and the list..." │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/tooling/lambda-tools/remote-debugging.mdx │ 51, 167 │ "Free Tier or higher license" │
├────────────────────────────────────────────────────────────────┼─────────┼──────────────────────────────────────────────┤
│ src/content/docs/aws/getting-started/help-support.md │ 34 │ Table row with "Free" │
└────────────────────────────────────────────────────────────────┴─────────┴──────────────────────────────────────────────┘
But maybe these will be tackled in a later iteration? :)
that's very helpful, thank you for sharing your detailed findings @alexrashed I searched in the code base itself, and did attempt to remove all mentions. But since you identified more, I will look into this today, as docs considers this update related to the 23rd launch a priority. |
The component has them hardcoded, so it had to be updated to handle the change.
it works, tyvm @remotesynth !! |

No description provided.