FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 07374fd0 authored by Monty Dawson's avatar Monty Dawson :coffee:
Browse files

Merge branch...

Merge branch '18-terraform-always-wants-to-add-metadata-annotation-run-googleapis-com-launch-stage-beta' into 'master'

Resolve "Terraform always wants to add  metadata annotation "run.googleapis.com/launch-stage"   = "BETA""

Closes #18

See merge request !24
parents 90df68b4 2aabab70
No related branches found
No related tags found
1 merge request!24Resolve "Terraform always wants to add metadata annotation "run.googleapis.com/launch-stage" = "BETA""
Pipeline #86837 passed
......@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.5] - 2021-05-28
### Changed
- Remove the requirement of BETA staging when the minimum instance number is above 0
or when using internal or load balancer ingresses.
## [2.0.4] - 2021-04-19
### Changed
- Replace 'placeholder' with 'gvisor' for 'run.googleapis.com/sandbox' annotation
......
......@@ -10,7 +10,7 @@ locals {
# Do we need to enable the 'beta' launch stage - only required if certain beta
# functionality is being used, or if `enable_beta_launch_stage` is set downstream
enable_beta_launch_stage = (
var.enable_beta_launch_stage || var.allowed_ingress != "all" || var.min_scale > 0
var.enable_beta_launch_stage
)
# Whether we should monitor the custom domain - only possible if there is a dns_name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment