* untested * pllan testing * fix stage 2s * move providers to their own file * single-environment stage 3 * fixes and moved blocks * stage3 factory * doc * review comments * review comments * tfdoc * fasts tage 1 tests * netsec as stage 2 * fix backported roles * fix backported roles * tfdoc * fixes * fix tag value roles in stage 1 * remove checklist, fix stage 1 tests * inventory * Small bugfix * refactor context tag values * fix previous merge * fix previous merge * fix previous merge * support short names for top level automation resources, change top level context variable * fix new top level context * roll back merge changes to stage 0 outputs * roll back more merge changes * linting errors * tfdoc * fix tests, roll back merge in tenants stage * tfdoc * fix inventory * optional stage 2 env folders and tag bindings * tflint * damn tflint * damn tflint * tfdoc * fix networking tests * tflint * fix test inventories * tfdoc * use coalesce for project parents * fix billing role conditions * fix billing role conditions * security stage tested (ngw resources need fixing/porting) * boilerplate * fix inventory * stage envs and stage linking script * initial work on resman docs, update diagram, improve teams folder * resman README * fix stage 2 IAM delegation * remove checklist from bootstrap * stage 1 tests * stage 0 1 and 2 tests * tflint * tflint * tfdoc * GCVE stage refactor (untested) * GCVE stage refactor (untested) * GCVE stage 3 * gcve tests * tflint * tfdoc * fix links * module tests * stages README * move network security to stage 2 * network security tests * replace stage links in README files * minimal netsec stage refactor * use factory for iac org policies, add configurable drs org policy for iac * test mt stage * tfdoc * fix cicd workflows * fix cicd workflows * gke-dev stage * tflint * remove data platform stage * exclude provider files via tfdoc opts * remove data platform tests and links * fix merge * fix resman inventory * boilerplate * inventory --------- Co-authored-by: Simone Ruffilli <sruffilli@google.com>
188 lines
5.7 KiB
Bash
Executable File
188 lines
5.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2024 Google LLC
|
|
#
|
|
# Licensed 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.
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "Error: no folder or GCS bucket specified. Use -h or --help for usage."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
|
cat <<END
|
|
Create commands to initialize stage provider and tfvars files.
|
|
|
|
Usage with GCS output files bucket:
|
|
stage-links.sh GCS_BUCKET_URI
|
|
|
|
Usage with local output files folder:
|
|
stage-links.sh FOLDER_PATH
|
|
|
|
Point path/GCS URI to the tenant folder in tenant mode:
|
|
stage-links.sh FOLDER_PATH/TENANT_SHORTNAME
|
|
END
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "$1" == "gs://"* ]]; then
|
|
CMD="gcloud storage cp $1"
|
|
CP_CMD=$CMD
|
|
elif [ ! -d "$1" ]; then
|
|
echo "folder $1 not found"
|
|
exit 1
|
|
else
|
|
CMD="ln -s $1"
|
|
CP_CMD="cp $1"
|
|
fi
|
|
|
|
GLOBALS="tfvars/0-globals.auto.tfvars.json"
|
|
PROVIDER_CMD=$CMD
|
|
STAGE_NAME=$(basename "$(pwd)")
|
|
EXTRA_FILES=""
|
|
|
|
case $STAGE_NAME in
|
|
|
|
"0-bootstrap")
|
|
unset GLOBALS
|
|
PROVIDER="providers/0-bootstrap-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS=""
|
|
;;
|
|
"1-resman" | "1-tenant-factory")
|
|
PROVIDER="providers/${STAGE_NAME}-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json"
|
|
;;
|
|
"1-vpcsc")
|
|
PROVIDER="providers/1-vpcsc-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json"
|
|
;;
|
|
"2-networking"*)
|
|
if [[ -z "$TENANT" ]]; then
|
|
echo "# if this is a tenant stage, set a \$TENANT variable with the tenant shortname and run the command again"
|
|
PROVIDER="providers/2-networking-providers.tf"
|
|
SELF="2-networking.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json
|
|
tfvars/1-resman.auto.tfvars.json"
|
|
else
|
|
unset GLOBALS
|
|
PROVIDER="tenants/$TENANT/providers/2-networking-providers.tf"
|
|
SELF="tenants/$TENANT/2-networking.auto.tfvars"
|
|
TFVARS="tenants/$TENANT/tfvars/0-bootstrap-tenant.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/1-resman.auto.tfvars.json"
|
|
fi
|
|
;;
|
|
"2-project-factory"*)
|
|
if [[ -z "$TENANT" ]]; then
|
|
echo "# if this is a tenant stage, set a \$TENANT variable with the tenant shortname and run the command again"
|
|
PROVIDER="providers/2-project-factory-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json
|
|
tfvars/1-resman.auto.tfvars.json"
|
|
EXTRA_FILES="tfvars/2-networking.auto.tfvars.json"
|
|
else
|
|
unset GLOBALS
|
|
PROVIDER="tenants/$TENANT/providers/2-project-factory-providers.tf"
|
|
SELF="tenants/$TENANT/$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tenants/$TENANT/tfvars/0-bootstrap-tenant.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/1-resman.auto.tfvars.json"
|
|
EXTRA_FILES="tenants/$TENANT/tfvars/2-networking.auto.tfvars.json"
|
|
fi
|
|
;;
|
|
"2-security"*)
|
|
if [[ -z "$TENANT" ]]; then
|
|
echo "# if this is a tenant stage, set a \$TENANT variable with the tenant shortname and run the command again"
|
|
PROVIDER="providers/2-security-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json
|
|
tfvars/1-resman.auto.tfvars.json"
|
|
else
|
|
unset GLOBALS
|
|
PROVIDER="tenants/$TENANT/providers/2-security-providers.tf"
|
|
SELF="tenants/$TENANT/$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tenants/$TENANT/tfvars/0-bootstrap-tenant.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/1-resman.auto.tfvars.json"
|
|
fi
|
|
;;
|
|
"3-network-security"*)
|
|
if [[ -z "$TENANT" ]]; then
|
|
echo "# if this is a tenant stage, set a \$TENANT variable with the tenant shortname and run the command again"
|
|
PROVIDER="providers/3-network-security-providers.tf"
|
|
SELF="$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json
|
|
tfvars/1-resman.auto.tfvars.json
|
|
tfvars/2-networking.auto.tfvars.json
|
|
tfvars/2-security.auto.tfvars.json"
|
|
else
|
|
unset GLOBALS
|
|
PROVIDER="tenants/$TENANT/providers/3-network-security-providers.tf"
|
|
SELF="tenants/$TENANT/$STAGE_NAME.auto.tfvars"
|
|
TFVARS="tenants/$TENANT/tfvars/0-bootstrap-tenant.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/1-resman.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/2-networking.auto.tfvars.json
|
|
tenants/$TENANT/tfvars/2-security.auto.tfvars.json"
|
|
fi
|
|
;;
|
|
*)
|
|
# check for a "dev" stage 3
|
|
echo "no stage found, trying for parent stage 3..."
|
|
STAGE_NAME=$(basename $(dirname "$(pwd)"))
|
|
if [[ "$STAGE_NAME" == "3-"* ]]; then
|
|
if [[ "$STAGE_NAME" == "3-gke-multitenant"* ]]; then
|
|
STAGE_NAME="3-gke"
|
|
fi
|
|
SUFFIX=$(basename "$(pwd)")
|
|
STAGE_NAME="${STAGE_NAME}-$SUFFIX"
|
|
PROVIDER="providers/${STAGE_NAME}-providers.tf"
|
|
TFVARS="tfvars/0-bootstrap.auto.tfvars.json
|
|
tfvars/1-resman.auto.tfvars.json
|
|
tfvars/2-networking.auto.tfvars.json
|
|
tfvars/2-security.auto.tfvars.json"
|
|
else
|
|
echo "stage '$STAGE_NAME' not found"
|
|
fi
|
|
;;
|
|
|
|
esac
|
|
|
|
echo -e "# copy and paste the following commands for '$STAGE_NAME'\n"
|
|
|
|
echo "$PROVIDER_CMD/$PROVIDER ./"
|
|
|
|
# if [[ -v GLOBALS ]]; then
|
|
# OSX uses an old bash version
|
|
if [[ ! -z ${GLOBALS+x} ]]; then
|
|
echo "$CMD/$GLOBALS ./"
|
|
fi
|
|
|
|
for f in $TFVARS; do
|
|
echo "$CMD/$f ./"
|
|
done
|
|
|
|
if [[ ! -z ${SELF+x} ]]; then
|
|
echo "# conventional place for stage tfvars (manually created)"
|
|
echo "$CMD/$SELF ./"
|
|
fi
|
|
|
|
if [[ ! -z ${EXTRA_FILES+x} ]]; then
|
|
echo "# optional files"
|
|
for f in $EXTRA_FILES; do
|
|
echo "$CMD/$f ./"
|
|
done
|
|
fi
|
|
|
|
if [[ ! -z ${MESSAGE+x} ]]; then
|
|
echo -e "\n# ---> $MESSAGE <---"
|
|
fi
|