Skip to content

Commit

Permalink
Bump terraform-aws-ecs-web-app version (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknysh authored Apr 26, 2019
1 parent de5417d commit 938dd26
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Available targets:
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
| authentication_oidc_user_info_endpoint | OIDC User Info Endpoint | string | `` | no |
| authentication_type | Authentication type. Supported values are `COGNITO`, `OIDC`, `NONE` | string | `NONE` | no |
| authentication_type | Authentication type. Supported values are `COGNITO` and `OIDC` | string | `` | no |
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | `1` | no |
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | `1` | no |
| branch | Atlantis branch of the GitHub repository, _e.g._ `master` | string | `master` | no |
Expand Down
2 changes: 1 addition & 1 deletion docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
| authentication_oidc_issuer | OIDC Issuer | string | `` | no |
| authentication_oidc_token_endpoint | OIDC Token Endpoint | string | `` | no |
| authentication_oidc_user_info_endpoint | OIDC User Info Endpoint | string | `` | no |
| authentication_type | Authentication type. Supported values are `COGNITO`, `OIDC`, `NONE` | string | `NONE` | no |
| authentication_type | Authentication type. Supported values are `COGNITO` and `OIDC` | string | `` | no |
| autoscaling_max_capacity | Atlantis maximum tasks to run | string | `1` | no |
| autoscaling_min_capacity | Atlantis minimum tasks to run | string | `1` | no |
| branch | Atlantis branch of the GitHub repository, _e.g._ `master` | string | `master` | no |
Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ terraform {
# Data
#--------------------------------------------------------------
data "aws_ssm_parameter" "atlantis_gh_token" {
count = "${local.enabled && length(var.github_oauth_token) > 0 ? 0 : 1}"
count = "${local.enabled && length(var.github_oauth_token) == 0 ? 1 : 0}"
name = "${local.github_oauth_token_ssm_name}"
}

data "aws_kms_key" "chamber_kms_key" {
count = "${local.enabled && length(var.kms_key_id) > 0 ? 0 : 1}"
count = "${local.enabled && length(var.kms_key_id) == 0 ? 1 : 0}"
key_id = "${local.kms_key_id}"
}

Expand Down Expand Up @@ -56,7 +56,7 @@ module "webhooks" {
}

module "web_app" {
source = "git::https://github.com/cloudposse/terraform-aws-ecs-web-app.git?ref=tags/0.17.0"
source = "git::https://github.com/cloudposse/terraform-aws-ecs-web-app.git?ref=tags/0.18.0"
namespace = "${var.namespace}"
stage = "${var.stage}"
name = "${var.name}"
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ variable "alb_ingress_authenticated_listener_arns_count" {

variable "authentication_type" {
type = "string"
default = "NONE"
description = "Authentication type. Supported values are `COGNITO`, `OIDC`, `NONE`"
default = ""
description = "Authentication type. Supported values are `COGNITO` and `OIDC`"
}

variable "authentication_cognito_user_pool_arn" {
Expand Down

0 comments on commit 938dd26

Please sign in to comment.