File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ Available targets:
213
213
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
214
214
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
215
215
| authentication_oidc_user_info_endpoint | OIDC User Info Endpoint | string | `` | no |
216
- | authentication_type | Authentication type. Supported values are ` COGNITO ` , ` OIDC ` , ` NONE ` | string | ` NONE ` | no |
216
+ | authentication_type | Authentication type. Supported values are ` COGNITO ` and ` OIDC ` | string | `` | no |
217
217
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | ` 1 ` | no |
218
218
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | ` 1 ` | no |
219
219
| branch | Atlantis branch of the GitHub repository, _ e.g._ ` master ` | string | ` master ` | no |
Original file line number Diff line number Diff line change 39
39
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
40
40
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
41
41
| authentication_oidc_user_info_endpoint | OIDC User Info Endpoint | string | `` | no |
42
- | authentication_type | Authentication type. Supported values are ` COGNITO ` , ` OIDC ` , ` NONE ` | string | ` NONE ` | no |
42
+ | authentication_type | Authentication type. Supported values are ` COGNITO ` and ` OIDC ` | string | `` | no |
43
43
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | ` 1 ` | no |
44
44
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | ` 1 ` | no |
45
45
| branch | Atlantis branch of the GitHub repository, _ e.g._ ` master ` | string | ` master ` | no |
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ terraform {
7
7
# Data
8
8
# --------------------------------------------------------------
9
9
data "aws_ssm_parameter" "atlantis_gh_token" {
10
- count = " ${ local . enabled && length (var. github_oauth_token ) > 0 ? 0 : 1 } "
10
+ count = " ${ local . enabled && length (var. github_oauth_token ) == 0 ? 1 : 0 } "
11
11
name = " ${ local . github_oauth_token_ssm_name } "
12
12
}
13
13
14
14
data "aws_kms_key" "chamber_kms_key" {
15
- count = " ${ local . enabled && length (var. kms_key_id ) > 0 ? 0 : 1 } "
15
+ count = " ${ local . enabled && length (var. kms_key_id ) == 0 ? 1 : 0 } "
16
16
key_id = " ${ local . kms_key_id } "
17
17
}
18
18
@@ -56,7 +56,7 @@ module "webhooks" {
56
56
}
57
57
58
58
module "web_app" {
59
- source = " git::https://github.com/cloudposse/terraform-aws-ecs-web-app.git?ref=tags/0.17 .0"
59
+ source = " git::https://github.com/cloudposse/terraform-aws-ecs-web-app.git?ref=tags/0.18 .0"
60
60
namespace = " ${ var . namespace } "
61
61
stage = " ${ var . stage } "
62
62
name = " ${ var . name } "
Original file line number Diff line number Diff line change @@ -380,8 +380,8 @@ variable "alb_ingress_authenticated_listener_arns_count" {
380
380
381
381
variable "authentication_type" {
382
382
type = " string"
383
- default = " NONE "
384
- description = " Authentication type. Supported values are `COGNITO`, `OIDC`, `NONE `"
383
+ default = " "
384
+ description = " Authentication type. Supported values are `COGNITO` and `OIDC `"
385
385
}
386
386
387
387
variable "authentication_cognito_user_pool_arn" {
You can’t perform that action at this time.
0 commit comments