|
| 1 | +--- |
| 2 | + |
| 3 | +# Copyright 2023 Cloudera, Inc. All Rights Reserved. |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | + |
| 17 | +################################################################################ |
| 18 | +# Global variables |
| 19 | +################################################################################ |
| 20 | +# Either define here or override using _extra variables_ in the CLI or AWX. |
| 21 | +# For example, '-e name_prefix=basex' |
| 22 | +# name_prefix: # You must specify a name prefix |
| 23 | +# admin_password: # You must specify an admin password |
| 24 | +infra_region: us-east1 # CSP region for infra |
| 25 | +infra_type: gcp # CSP |
| 26 | + |
| 27 | +#gcp_project_id: # You must specify a GCP Project ID |
| 28 | + |
| 29 | +# Limit to the caller/controller |
| 30 | +allowed_cidrs: "{{ lookup('ansible.builtin.url', 'https://api.ipify.org', wantlist=True) | product(['32']) | map('join', '/') | list }}" |
| 31 | + |
| 32 | +################################################################################ |
| 33 | +# CDP Environment and Datalake variables |
| 34 | +################################################################################ |
| 35 | +env: |
| 36 | + tunnel: no |
| 37 | + public_endpoint_access: yes |
| 38 | + |
| 39 | +infra: |
| 40 | + gcp: |
| 41 | + project: "{{ gcp_project_id }}" |
| 42 | + vpc: |
| 43 | + extra_cidr: "{{ allowed_cidrs }}" |
| 44 | + extra_ports: [22, 443] |
0 commit comments