File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ atlantis_repo_allowlist = ["repo1", "repo2"]
14
14
# Optional Parameters
15
15
thumbprint_list = ["oidc-thumbprint-1", "oidc-thumbprint-2"]
16
16
atlantis_docker_image = = "<your-custom-docker-image>"
17
+ ecs_cluster_name = "<your-ecs-cluster-name>"
17
18
```
18
19
19
20
## Requirements
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ module "atlantis" {
6
6
atlantis_gh_user = var. atlantis_gh_user
7
7
atlantis_repo_allowlist = var. atlantis_repo_allowlist
8
8
atlantis_url = var. atlantis_url
9
- thumbprint_list = var. thumbprint_list
10
- atlantis_docker_image = var. atlantis_docker_image
9
+
10
+ # Optional variables
11
+ thumbprint_list = var. thumbprint_list
12
+ atlantis_docker_image = var. atlantis_docker_image
13
+ ecs_cluster_name = var. ecs_cluster_name
11
14
}
Original file line number Diff line number Diff line change @@ -28,14 +28,18 @@ variable "atlantis_url" {
28
28
type = string
29
29
}
30
30
31
+ # Optional variables defination
31
32
variable "thumbprint_list" {
32
33
description = " List of thumbprints for the OIDC provider"
33
34
type = list (string )
34
- default = [" e252aa6e92432f32cbc1b182056627c239652678" ]
35
35
}
36
36
37
37
variable "atlantis_docker_image" {
38
38
description = " The Docker image to use for the Atlantis server"
39
39
type = string
40
- default = " ghcr.io/runatlantis/atlantis:v0.23.1"
40
+ }
41
+
42
+ variable "ecs_cluster_name" {
43
+ description = " The name of the ECS cluster"
44
+ type = string
41
45
}
You can’t perform that action at this time.
0 commit comments