We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the idea I would like to extend AtlantisProject type for changing options such as RepoLocks and SilencePRComments in generated projects https://www.runatlantis.io/docs/repo-level-atlantis-yaml#repolocks
// config.go type AtlantisProject struct { ....... RepoLocks RepoLocksConfig `json:"repo_locks,omitempty"` // silence_pr_comments silences all comments on PRs for this project SilencePRComments []string `json:"silence_pr_comments,omitempty"` } type RepoLocksConfig struct { // The mode of the repo to lock Mode string `json:"mode"` } // generate.go project := &AtlantisProject{ Dir: filepath.ToSlash(relativeSourceDir), Workflow: workflow, TerraformVersion: terraformVersion, ApplyRequirements: applyRequirements, RepoLocks: RepoLocksConfig{ Mode: "disabled", // parsed from arguments } SilencePRComments: []string{"apply"}, // parsed from arguments Autoplan: AutoplanConfig{ Enabled: resolvedAutoPlan, WhenModified: uniqueStrings(relativeDependencies), }, }
terragrunt-atlantis-config --silence-pr-comments plan --repo-locks disabled
Why is this helpful? It will helps to manage project configuration for terragrunt repositories with atlantis
What alternatives exist today? Bash scripts in pre/post workflow hook
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
Describe the idea
I would like to extend AtlantisProject type for changing options such as RepoLocks and SilencePRComments in generated projects
https://www.runatlantis.io/docs/repo-level-atlantis-yaml#repolocks
terragrunt-atlantis-config --silence-pr-comments plan --repo-locks disabled
Why is this helpful?
It will helps to manage project configuration for terragrunt repositories with atlantis
What alternatives exist today?
Bash scripts in pre/post workflow hook
The text was updated successfully, but these errors were encountered: