mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add Pulumi Go code for AWS IAM entities related to Kubernetes. This includes IAM policy attachment, trust policy, and instance profile. Add instructions for use in README.md. Update .gitignore for the repository to exclude Pulumi state and include go.sum files. --------- Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
24 lines
419 B
Text
24 lines
419 B
Text
# Ignore certain Vagrant-related files and directories
|
|
.bundle/
|
|
.vagrant
|
|
|
|
# Ignore certain Terraform-related files and directories
|
|
*.tfstate
|
|
*.tfstate.backup
|
|
*.tfvars
|
|
.terraform
|
|
|
|
# Ignore various other files
|
|
real-adminrc
|
|
*.taskpaper
|
|
consul-*.config.json
|
|
*.defaults
|
|
ssh.cfg
|
|
known_hosts
|
|
|
|
# Ignore Pulumi stack files and Pulumi state directories
|
|
Pulumi.*.yaml
|
|
.pulumi
|
|
|
|
# Ignore TypeScript/NodeJS directories
|
|
node_modules/
|