You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: runatlantis.io/docs/repo-level-atlantis-yaml.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -309,7 +309,7 @@ projects:
309
309
310
310
:::warning
311
311
`plan_requirements`, `apply_requirements` and `import_requirements` are restricted keys so this repo will need to be configured
312
-
to be allowed to set this key. See [Server-Side Repo Config Use Cases](server-side-repo-config.md#repos-can-set-their-own-apply-an-applicable-subcommand).
312
+
to be allowed to set this key. See [Server-Side Repo Config Use Cases](server-side-repo-config.md#repos-can-set-their-own-apply-requirements).
313
313
:::
314
314
315
315
### Order of planning/applying
@@ -471,8 +471,8 @@ workflow: myworkflow
471
471
| name | string | none | maybe | Required if there is more than one project with the same `dir` and `workspace`. This project name can be used with the `-p` flag. |
472
472
| branch | string | none | no | Regex matching projects by the base branch of pull request (the branch the pull request is getting merged into). Only projects that match the PR's branch will be considered. By default, all branches are matched. |
473
473
| dir | string | none | **yes** | The directory of this project relative to the repo root. For example if the project was under `./project1` then use `project1`. Use `.` to indicate the repo root. |
474
-
| workspace | string | `"default"` | no | The [Terraform workspace](https://developer.hashicorp.com/terraform/language/state/workspaces) for this project. Atlantis will switch to this workplace when planning/applying and will create it if it doesn't exist. |
475
-
| execution_order_group | int | `0` | no | Index of execution order group. Projects will be sort by this field before planning/applying. |
474
+
| workspace | string | `"default"` | no | The [Terraform workspace](https://developer.hashicorp.com/terraform/language/state/workspaces) for this project. Atlantis will switch to this workspace when planning/applying and will create it if it doesn't exist. |
475
+
| execution_order_group | int | `0` | no | Index of execution order group. Projects will be sorted by this field before planning/applying. |
476
476
| delete_source_branch_on_merge | bool | `false` | no | Automatically deletes the source branch on merge. |
477
477
| repo_locking | bool | `true` | no | (deprecated) Get a repository lock in this project when plan. |
478
478
| repo_locks | [RepoLocks](#repolocks) | `mode: on_plan` | no | Get a repository lock in this project on plan or apply. See [RepoLocks](#repolocks) for more details. |
Copy file name to clipboardExpand all lines: runatlantis.io/docs/security.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Even with the `--repo-allowlist` flag set, without a webhook secret, attackers c
76
76
Webhook secrets ensure that the webhook requests are actually coming from your VCS provider (GitHub or GitLab).
77
77
78
78
:::tip Tip
79
-
If you are using Azure DevOps, instead of webhook secrets add a [basic username and password](#azuredevopsbasicauthentication)
79
+
If you are using Azure DevOps, instead of webhook secrets add a [basic username and password](#azure-devops-basic-authentication)
80
80
:::
81
81
82
82
### Azure DevOps Basic Authentication
@@ -91,7 +91,7 @@ flags.
91
91
92
92
### Enable Authentication on Atlantis Web Server
93
93
94
-
It is very recommended to enable authentication in the web service. Enable BasicAuth using the `--web-basic-auth=true` and setup a username and a password using `--web-username=yourUsername` and `--web-password=yourPassword` flags.
94
+
It is highly recommended to enable authentication in the web service. Enable BasicAuth using the `--web-basic-auth=true` and set up a username and a password using `--web-username=yourUsername` and `--web-password=yourPassword` flags.
95
95
96
96
You can also pass these as environment variables `ATLANTIS_WEB_BASIC_AUTH=true` `ATLANTIS_WEB_USERNAME=yourUsername` and `ATLANTIS_WEB_PASSWORD=yourPassword`.
- [PR to improve the situation](https://github.com/hashicorp/terraform/pull/33479)
1486
1486
1487
-
The effect of the race condition is more evident when using parallel configuration to run plan and apply, by disabling the use of plugin cache will impact in the performance when starting a new plan or apply, but in large atlantis deployments with multiple projects and shared modules the use of `--parallel_plan` and `--parallel_apply` is mandatory for an efficient management of the PRs.
1487
+
The effect of the race condition is more evident when using parallel configuration to run plan and apply. Disabling the use of plugin cache will impact the performance when starting a new plan or apply, but in large Atlantis deployments with multiple projects and shared modules the use of `--parallel_plan` and `--parallel_apply` is mandatory for an efficient management of the PRs.
0 commit comments