From cc2022998ec449cf40579e6000ea8ba05733351a Mon Sep 17 00:00:00 2001 From: aknysh Date: Fri, 26 Apr 2019 01:52:02 -0400 Subject: [PATCH] Bump `terraform-aws-alb-ingress` version --- README.md | 2 +- docs/terraform.md | 2 +- main.tf | 2 +- variables.tf | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 16cc1617..594b00c3 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,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_dimension | Dimension to autoscale on (valid options: cpu, memory) | string | `memory` | no | | autoscaling_enabled | A boolean to enable/disable Autoscaling policy for ECS Service | string | `false` | no | | autoscaling_max_capacity | Maximum number of running instances of a Service | string | `2` | no | diff --git a/docs/terraform.md b/docs/terraform.md index a88f9ba9..46577129 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -36,7 +36,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_dimension | Dimension to autoscale on (valid options: cpu, memory) | string | `memory` | no | | autoscaling_enabled | A boolean to enable/disable Autoscaling policy for ECS Service | string | `false` | no | | autoscaling_max_capacity | Maximum number of running instances of a Service | string | `2` | no | diff --git a/main.tf b/main.tf index d99c8d5e..50731cf5 100644 --- a/main.tf +++ b/main.tf @@ -21,7 +21,7 @@ resource "aws_cloudwatch_log_group" "app" { } module "alb_ingress" { - source = "git::https://github.com/cloudposse/terraform-aws-alb-ingress.git?ref=tags/0.6.0" + source = "git::https://github.com/cloudposse/terraform-aws-alb-ingress.git?ref=tags/0.7.0" name = "${var.name}" namespace = "${var.namespace}" stage = "${var.stage}" diff --git a/variables.tf b/variables.tf index de0602c4..e98601cf 100644 --- a/variables.tf +++ b/variables.tf @@ -556,8 +556,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" {