Skip to content

Commit 9fa75ea

Browse files
committed
chore: comment out optional parameters
1 parent c003f71 commit 9fa75ea

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

examples/complete/.header.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ atlantis_gh_user = "your-github-username"
1111
atlantis_repo_allowlist = ["repo1", "repo2"]
1212
1313
# Optional Parameters
14-
thumbprint_list = ["oidc-thumbprint-1", "oidc-thumbprint-2"]
15-
atlantis_docker_image = = "<your-custom-docker-image>"
16-
ecs_cluster_name = "<your-ecs-cluster-name>"
14+
# thumbprint_list = ["oidc-thumbprint-1", "oidc-thumbprint-2"]
15+
# atlantis_docker_image = = "<your-custom-docker-image>"
16+
# ecs_cluster_name = "<your-ecs-cluster-name>"
1717
```

examples/complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module "atlantis" {
88
atlantis_url = var.atlantis_url
99

1010
# 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+
# thumbprint_list = var.thumbprint_list
12+
# atlantis_docker_image = var.atlantis_docker_image
13+
# ecs_cluster_name = var.ecs_cluster_name
1414
}

examples/complete/variables.tf

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ variable "atlantis_url" {
2929
}
3030

3131
# Optional variables defination
32-
variable "thumbprint_list" {
33-
description = "List of thumbprints for the OIDC provider"
34-
type = list(string)
35-
}
36-
37-
variable "atlantis_docker_image" {
38-
description = "The Docker image to use for the Atlantis server"
39-
type = string
40-
}
41-
42-
variable "ecs_cluster_name" {
43-
description = "The name of the ECS cluster"
44-
type = string
45-
}
32+
# variable "thumbprint_list" {
33+
# description = "List of thumbprints for the OIDC provider"
34+
# type = list(string)
35+
# }
36+
37+
# variable "atlantis_docker_image" {
38+
# description = "The Docker image to use for the Atlantis server"
39+
# type = string
40+
# }
41+
42+
# variable "ecs_cluster_name" {
43+
# description = "The name of the ECS cluster"
44+
# type = string
45+
# }

0 commit comments

Comments
 (0)