Home - YakDriver/fardvag GitHub Wiki
Welcome to the Färdväg wiki! Helping me organize Terraform/AWS work since 2018.
- Automation focus (generating code, AI)
- Strategic not tactical
- smarterr
- TF Actions
- daniel
- kristin
- omar
- Wording instead of "action drift" RFC
- [RFC] TF-1081: Terraform Actions in the Provider SDKs
- Dealing with Config Diffs Resulting from TF Actions
- TF Actions in Core
- Actions Provider Schema Discovery
- Marc's Doc
- Slides
- Syntax
- User feedback
- Notes
- TF Upgrade
- AWS Team doc
- Re-read all the docs
- DMS RFC - to work on maybe next quarter but descoped from v6
- Claudocreate
- Promo
- [In (stale) review] ConfigPlanChecks for recreated
- Homebrew Tap
- tfproviderdocs
- Hermes
- AWS Provider
- Hero
- AWSCC Provider
- AWSCC Docs
- Gardening
- Working Board
- Terraform Upgrade
- AWS SDK for Go v2
- Scaffolding
- Check up on ISO-tagging #22532 (#23030)
- AWS Base, FIPS (provider-side) #22804
- 4.0 Task: #22247
- Fed Priority
- Scaffolding
- [Acctests] Move to context aware Issue #17458
- Work on CI, golangci, etc.
- [Acctests] Those still failing...
- [Acctests] Sweepers #15334
- [Acctests] PRs for Route53 (#16380), Transfer, SimpleAD, etc. related to #592
- [Review] Maintainer PR Reviews
- [Acctests] SageMaker endpoint fails in GovCloud b/c no TensorFlow Serving #16135 (Support Ticket/Feature Request in, figure out workaround or wait on AWS?)
- [Lint]: Check for new resources in a new service
- [Lint]: Static check for hardcoded instance types #14305
- [AWS Infrastructure] Get personal account quota-ized, etc.
- [Learn]
- Semgrep (GitHub, AWS provider, changelog automation)
TF_ACC=1 go test ./internal/service/iam -v -count 1 -parallel 20 -run='TestAcc' -timeout=180m
TF_ACC=1 go test ./internal/sweep -v -tags=sweep -sweep-run=aws_config_aggregate_authorization -sweep=$AWS_DEFAULT_REGION -sweep-allow-failures -timeout=1h
- Upgrade to SP Guide
SWEEP=$AWS_DEFAULT_REGION SWEEPARGS=-sweep-run=aws_vpc make sweep
- Triage
- d.IsNewResource()
- Disappears Test
- Quotas for AWS accounts
- Consistent IAM naming
- Schema docs
- Data Handling and Conversion
- Contributing Docs
- Service Maintainers
- Terraform AWS Provider Issues | Pull Requests
- Default Tags
- Earlier Issues
- Provider Release Process
- Import Docs
aws/internal
- CloudAPI
echo "PR,Modify,Comments,Thumbs,Size" > prs.test.csv
gh pr list --json number,reactionGroups,comments,maintainerCanModify,labels --limit 1000 | jq -r '.[] | {pr:.number, modifiable:.maintainerCanModify, comments:(.comments | length), count:(if .reactionGroups[0].content=="THUMBS_UP" then .reactionGroups[0].users.totalCount else 0 end)} + (.labels[].name | capture("size/(?<size>[A-Z]+)")) | join(",")' >> prs.test.csv
echo "Issue,Comments,Thumbs" > issues.test.csv
gh issue list --json number,reactionGroups,comments --limit 1000 | jq -r '.[] | {issue:.number, comments:(.comments | length), count:(if .reactionGroups[0].content=="THUMBS_UP" then .reactionGroups[0].users.totalCount else 0 end)} | join(",")' >> issues.test.csv
echo "Issue,Comments,Thumbs" > issues.test.csv
gh issue list --json number,reactionGroups,comments --limit 2500 | jq -r '.[] | {issue:.number, comments:(.comments | length), count:(if .reactionGroups[0].content=="THUMBS_UP" then .reactionGroups[0].users.totalCount else 0 end)} | join(",")' >> issues.test.csv