rshamunov commented on code in PR #25994:
URL: https://github.com/apache/beam/pull/25994#discussion_r1169615158


##########
playground/terraform/infrastructure/appengine/main.tf:
##########
@@ -14,14 +14,14 @@
 # limitations under the License.
 
 resource "google_app_engine_application" "app_playground" {
-  count         = var.feature_flag ? 1 : 0
+  count         = var.skip_appengine_deploy ? 1 : 0
   project     = var.project_id
   location_id = var.region == "us-central1" ? var.location_id_us : (var.region 
== "europe-west1") ? var.location_id_eu : var.region
   database_type = "CLOUD_DATASTORE_COMPATIBILITY"
 }
 
 resource "google_project_service" "firestore" {
-  count      = var.feature_flag ? 1 : 0
+  count      = var.skip_appengine_deploy ? 1 : 0

Review Comment:
   Reverse?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to