Generalization of tflint call for FAST stages (#2225)
* Generalization of tflint call for FAST * Fix tfvars path * Fix tfvars path - depending where the file is * Fix regex * Reeanble linting * Align test directory to stage name * Align all fast stages to use tftest
This commit is contained in:
committed by
GitHub
parent
1563a76011
commit
024d3255e6
@@ -20,13 +20,7 @@ tests:
|
||||
extra_files:
|
||||
- ../../../tests/fast/stages/s0_bootstrap/data/checklist-data.json
|
||||
- ../../../tests/fast/stages/s0_bootstrap/data/checklist-org-iam.json
|
||||
tfvars:
|
||||
- checklist.tfvars
|
||||
inventory:
|
||||
- checklist.yaml
|
||||
simple:
|
||||
tfvars:
|
||||
- simple.tfvars
|
||||
inventory:
|
||||
- simple.yaml
|
||||
- simple_projects.yaml
|
||||
|
||||
@@ -18,12 +18,4 @@ tests:
|
||||
checklist:
|
||||
extra_files:
|
||||
- ../../../tests/fast/stages/s0_bootstrap/data/checklist-data.json
|
||||
tfvars:
|
||||
- checklist.tfvars
|
||||
inventory:
|
||||
- checklist.yaml
|
||||
simple:
|
||||
tfvars:
|
||||
- simple.tfvars
|
||||
inventory:
|
||||
- simple.yaml
|
||||
|
||||
@@ -26,9 +26,9 @@ def test_vpn_peering_parity(plan_summary):
|
||||
'''Ensure VPN- and peering-based networking stages are identical except
|
||||
for VPN and VPC peering resources'''
|
||||
summary_peering = plan_summary("fast/stages/2-networking-a-peering",
|
||||
tf_var_files=["common.tfvars"])
|
||||
tf_var_files=["simple.tfvars"])
|
||||
summary_vpn = plan_summary("fast/stages/2-networking-b-vpn",
|
||||
tf_var_files=["common.tfvars"])
|
||||
tf_var_files=["simple.tfvars"])
|
||||
|
||||
ddiff = DeepDiff(summary_vpn.values, summary_peering.values,
|
||||
ignore_order=True)
|
||||
|
||||
@@ -13,10 +13,8 @@
|
||||
# limitations under the License.
|
||||
|
||||
module: fast/stages/2-networking-a-peering
|
||||
common_tfvars:
|
||||
- common.tfvars
|
||||
|
||||
tests:
|
||||
stage:
|
||||
simple:
|
||||
extra_files:
|
||||
- ../../plugins/2-networking-serverless-connector/*.tf
|
||||
|
||||
@@ -13,10 +13,8 @@
|
||||
# limitations under the License.
|
||||
|
||||
module: fast/stages/2-networking-b-vpn
|
||||
common_tfvars:
|
||||
- common.tfvars
|
||||
|
||||
tests:
|
||||
stage:
|
||||
simple:
|
||||
extra_files:
|
||||
- ../../plugins/2-networking-serverless-connector/*.tf
|
||||
|
||||
@@ -13,10 +13,8 @@
|
||||
# limitations under the License.
|
||||
|
||||
module: fast/stages/2-networking-c-nva
|
||||
common_tfvars:
|
||||
- common.tfvars
|
||||
|
||||
tests:
|
||||
stage:
|
||||
simple:
|
||||
extra_files:
|
||||
- ../../plugins/2-networking-serverless-connector/*.tf
|
||||
|
||||
@@ -13,10 +13,8 @@
|
||||
# limitations under the License.
|
||||
|
||||
module: fast/stages/2-networking-d-separate-envs
|
||||
common_tfvars:
|
||||
- common.tfvars
|
||||
|
||||
tests:
|
||||
stage:
|
||||
simple:
|
||||
extra_files:
|
||||
- ../../plugins/2-networking-serverless-connector/*.tf
|
||||
|
||||
@@ -13,8 +13,6 @@
|
||||
# limitations under the License.
|
||||
|
||||
module: fast/stages/2-networking-e-nva-bgp
|
||||
common_tfvars:
|
||||
- common.tfvars
|
||||
|
||||
tests:
|
||||
stage:
|
||||
simple:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2023 Google LLC
|
||||
# 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.
|
||||
@@ -12,10 +12,19 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
def test_counts(plan_summary):
|
||||
"Test stage."
|
||||
summary = plan_summary("fast/stages/3-data-platform/dev/",
|
||||
tf_var_files=["common.tfvars"])
|
||||
assert summary.counts["modules"] > 0
|
||||
assert summary.counts["resources"] > 0
|
||||
counts:
|
||||
google_access_context_manager_access_policy: 1
|
||||
google_access_context_manager_service_perimeter: 1
|
||||
google_essential_contacts_contact: 1
|
||||
google_folder: 1
|
||||
google_kms_crypto_key: 8
|
||||
google_kms_crypto_key_iam_binding: 8
|
||||
google_kms_key_ring: 8
|
||||
google_project: 2
|
||||
google_project_iam_binding: 2
|
||||
google_project_iam_member: 2
|
||||
google_project_service: 6
|
||||
google_project_service_identity: 2
|
||||
google_storage_bucket_object: 1
|
||||
modules: 12
|
||||
resources: 43
|
||||
@@ -11,3 +11,8 @@
|
||||
# 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.
|
||||
|
||||
module: fast/stages/2-security
|
||||
|
||||
tests:
|
||||
simple:
|
||||
35
tests/fast/stages/s3_data_platform/simple.yaml
Normal file
35
tests/fast/stages/s3_data_platform/simple.yaml
Normal file
@@ -0,0 +1,35 @@
|
||||
# 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.
|
||||
|
||||
counts:
|
||||
google_artifact_registry_repository: 1
|
||||
google_bigquery_dataset: 4
|
||||
google_bigquery_default_service_account: 7
|
||||
google_composer_environment: 1
|
||||
google_compute_shared_vpc_service_project: 3
|
||||
google_data_catalog_policy_tag: 3
|
||||
google_data_catalog_taxonomy: 1
|
||||
google_project: 9
|
||||
google_project_iam_binding: 61
|
||||
google_project_iam_member: 16
|
||||
google_project_service: 114
|
||||
google_project_service_identity: 18
|
||||
google_pubsub_topic: 1
|
||||
google_service_account: 8
|
||||
google_service_account_iam_binding: 13
|
||||
google_storage_bucket: 9
|
||||
google_storage_bucket_object: 1
|
||||
google_storage_project_service_account: 7
|
||||
modules: 34
|
||||
resources: 277
|
||||
@@ -11,3 +11,8 @@
|
||||
# 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.
|
||||
|
||||
module: fast/stages/3-data-platform/dev/
|
||||
|
||||
tests:
|
||||
simple:
|
||||
@@ -16,7 +16,3 @@ module: fast/stages/3-gcve/prod
|
||||
|
||||
tests:
|
||||
simple:
|
||||
tfvars:
|
||||
- simple.tfvars
|
||||
inventory:
|
||||
- simple.yaml
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 2023 Google LLC
|
||||
# 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.
|
||||
@@ -12,10 +12,17 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
def test_counts(plan_summary):
|
||||
"Test stage."
|
||||
summary = plan_summary("fast/stages/2-security",
|
||||
tf_var_files=["common.tfvars"])
|
||||
assert summary.counts["modules"] > 0
|
||||
assert summary.counts["resources"] > 0
|
||||
counts:
|
||||
google_bigquery_dataset: 1
|
||||
google_compute_shared_vpc_service_project: 1
|
||||
google_container_cluster: 1
|
||||
google_container_node_pool: 1
|
||||
google_project: 1
|
||||
google_project_iam_binding: 1
|
||||
google_project_iam_member: 8
|
||||
google_project_service: 12
|
||||
google_project_service_identity: 2
|
||||
google_service_account: 1
|
||||
google_storage_bucket_object: 1
|
||||
modules: 6
|
||||
resources: 30
|
||||
@@ -1,21 +0,0 @@
|
||||
# Copyright 2023 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.
|
||||
|
||||
|
||||
def test_counts(plan_summary):
|
||||
"Test stage."
|
||||
summary = plan_summary("fast/stages/3-gke-multitenant/dev/",
|
||||
tf_var_files=["common.tfvars"])
|
||||
assert summary.counts["modules"] > 0
|
||||
assert summary.counts["resources"] > 0
|
||||
@@ -11,3 +11,8 @@
|
||||
# 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.
|
||||
|
||||
module: fast/stages/3-gke-multitenant/dev/
|
||||
|
||||
tests:
|
||||
simple:
|
||||
20
tests/fast/stages/s3_project_factory/simple.yaml
Normal file
20
tests/fast/stages/s3_project_factory/simple.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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.
|
||||
|
||||
counts:
|
||||
google_project: 1
|
||||
google_project_service: 3
|
||||
google_storage_project_service_account: 1
|
||||
modules: 2
|
||||
resources: 5
|
||||
@@ -1,21 +0,0 @@
|
||||
# Copyright 2023 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.
|
||||
|
||||
|
||||
def test_counts(plan_summary):
|
||||
"Test stage."
|
||||
summary = plan_summary("fast/stages/3-project-factory/dev",
|
||||
tf_var_files=["common.tfvars"])
|
||||
assert summary.counts["modules"] > 0
|
||||
assert summary.counts["resources"] > 0
|
||||
@@ -11,3 +11,8 @@
|
||||
# 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.
|
||||
|
||||
module: fast/stages/3-project-factory/dev
|
||||
|
||||
tests:
|
||||
simple:
|
||||
Reference in New Issue
Block a user