gitextract_prbnparz/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── enhancement.md │ ├── keylabeler.yml │ ├── prlint.json │ ├── release-drafter.yml │ ├── stale.yml │ └── workflows/ │ ├── reviewdog.yml │ └── tflint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .scripts/ │ ├── requirements.txt │ └── validate_variables.py ├── CONTRIBUTING.md ├── LICENSE.md ├── QUICKSTART.md ├── README.md ├── charts/ │ ├── README.md │ ├── aws-fsx-csi-driver/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── cluster-role-binding.yaml │ │ │ ├── cluster-role.yaml │ │ │ ├── csi-driver.yaml │ │ │ ├── daemon-set.yaml │ │ │ ├── deployment.yaml │ │ │ └── service-account.yaml │ │ └── values.yaml │ └── cluster-issuers/ │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates/ │ │ └── clusterissuer.yaml │ └── values.yaml ├── docs/ │ ├── CONTRIBUTE_PR.md │ └── TROUBLESHOOTING.md ├── examples/ │ ├── README.md │ ├── argocd/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── argocd-with-applications/ │ │ ├── .rspec │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── spec/ │ │ │ ├── .gitignore │ │ │ ├── acm_spec.rb │ │ │ ├── eks_spec.rb │ │ │ ├── route53_spec.rb │ │ │ └── spec_helper.rb │ │ ├── variables.tf │ │ └── versions.tf │ ├── common/ │ │ ├── CONFIGURE.md │ │ ├── README.md │ │ ├── custom.tf │ │ ├── destroy.sh │ │ ├── destroy_fix.sh │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── docker-reverse-proxy/ │ │ ├── .rspec │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── README.md │ │ ├── Rakefile │ │ ├── apps/ │ │ │ └── anchor │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── spec/ │ │ │ ├── .gitignore │ │ │ ├── acm_spec.rb │ │ │ ├── eks_spec.rb │ │ │ ├── route53_spec.rb │ │ │ └── spec_helper.rb │ │ ├── variables.tf │ │ └── versions.tf │ └── test/ │ └── terraform_argocd_test_basic.go ├── go.mod ├── go.sum ├── modules/ │ └── README.md └── prerequisites_install.sh