1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# frozen_string_literal: true
class Projects::GoogleCloud::GcpRegionsController < Projects::GoogleCloud::BaseController
# filtered list of GCP cloud run locations...
# ...that have domain mapping available
# Source https://cloud.google.com/run/docs/locations 2022-01-30
AVAILABLE_REGIONS = %w[
asia-east1
asia-northeast1
asia-southeast1
europe-north1
europe-west1
europe-west4
us-central1
us-east1
us-east4
us-west1
].freeze
GCP_REGION_CI_VAR_KEY = 'GCP_REGION'
def index
js_data = {
availableRegions: AVAILABLE_REGIONS,
refs: refs,
cancelPath: project_google_cloud_configuration_path(project)
}
@js_data = Gitlab::Json.dump(js_data)
track_event(:render_form)
end
def create
permitted_params = params.permit(:ref, :gcp_region)
CloudSeed::GoogleCloud::GcpRegionAddOrReplaceService.new(project).execute(
permitted_params[:ref],
permitted_params[:gcp_region]
)
track_event(:configure_region)
redirect_to project_google_cloud_configuration_path(project), notice: _('GCP region configured')
end
end
|