MakarkinSAkvelon commented on code in PR #23208: URL: https://github.com/apache/beam/pull/23208#discussion_r991886682
########## playground/terraform/infrastructure/appengine/main.tf: ########## @@ -0,0 +1,67 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +resource "google_app_engine_application" "app_playground" { + project = var.project_id + location_id = var.region == "us-central1" ? var.location_id_us : var.region Review Comment: There is a problem with locations: for europe-west1 and us-central1 location name for AppEngine should be europe-west and us-central. So, this option (line 18) just helps us to identify and put correct location for AppEngine location: https://cloud.google.com/appengine/docs/standard/locations#:~:text=If%20you%20already%20created%20an,the%20top%20of%20the%20page. -- 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]
