Skip to content

Commit 938dd26

Browse files
authored
Bump terraform-aws-ecs-web-app version (#5)
1 parent de5417d commit 938dd26

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Available targets:
213213
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
214214
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
215215
| 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 |
217217
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | `1` | no |
218218
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | `1` | no |
219219
| branch | Atlantis branch of the GitHub repository, _e.g._ `master` | string | `master` | no |

docs/terraform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
4040
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
4141
| 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 |
4343
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | `1` | no |
4444
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | `1` | no |
4545
| branch | Atlantis branch of the GitHub repository, _e.g._ `master` | string | `master` | no |

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ terraform {
77
# Data
88
#--------------------------------------------------------------
99
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}"
1111
name = "${local.github_oauth_token_ssm_name}"
1212
}
1313

1414
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}"
1616
key_id = "${local.kms_key_id}"
1717
}
1818

@@ -56,7 +56,7 @@ module "webhooks" {
5656
}
5757

5858
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"
6060
namespace = "${var.namespace}"
6161
stage = "${var.stage}"
6262
name = "${var.name}"

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,8 @@ variable "alb_ingress_authenticated_listener_arns_count" {
380380

381381
variable "authentication_type" {
382382
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`"
385385
}
386386

387387
variable "authentication_cognito_user_pool_arn" {

0 commit comments

Comments
 (0)