diff --git a/.github/workflows/wc-test-get-target-config.yaml b/.github/workflows/wc-test-get-target-config.yaml index 206632460..3fda524d8 100644 --- a/.github/workflows/wc-test-get-target-config.yaml +++ b/.github/workflows/wc-test-get-target-config.yaml @@ -40,6 +40,5 @@ jobs: TFACTION_IA_APPLY: "false" TFACTION_JOB_TYPE: "terraform" - run: echo "${{ steps.target-config.outputs.working_directory }}" - - run: echo "${{ steps.target-config.outputs.gcs_bucket_name_plan_file }}" - run: echo "${{ steps.target-config.outputs.gcs_bucket_name_tfmigrate_history }}" - run: echo "${{ steps.target-config.outputs.template_dir }}" diff --git a/export-aws-secrets-manager/src/lib.ts b/export-aws-secrets-manager/src/lib.ts index ff8280536..e6b2d05b7 100644 --- a/export-aws-secrets-manager/src/lib.ts +++ b/export-aws-secrets-manager/src/lib.ts @@ -13,7 +13,6 @@ export interface TargetConfig { aws_region: string; s3_bucket_name_tfmigrate_history: string; template_dir: string; - gcs_bucket_name_plan_file: string; aws_assume_role_arn: string | undefined; gcp_service_account: string | undefined; diff --git a/export-secrets/src/lib.ts b/export-secrets/src/lib.ts index ccf3e0463..c42812588 100644 --- a/export-secrets/src/lib.ts +++ b/export-secrets/src/lib.ts @@ -13,7 +13,6 @@ export interface TargetConfig { aws_region: string; s3_bucket_name_tfmigrate_history: string; template_dir: string; - gcs_bucket_name_plan_file: string; aws_assume_role_arn: string | undefined; gcp_service_account: string | undefined; diff --git a/get-target-config/tests/config-1.yaml b/get-target-config/tests/config-1.yaml index da69b48b3..ea96d006e 100644 --- a/get-target-config/tests/config-1.yaml +++ b/get-target-config/tests/config-1.yaml @@ -30,7 +30,6 @@ target_groups: - working_directory: get-target-config/tests/gcp/ target: gcp/ - gcs_bucket_name_plan_file: "" gcs_bucket_name_tfmigrate_history: "" template_dir: templates/gcp terraform_plan_config: diff --git a/list-targets-with-changed-files/src/lib.ts b/list-targets-with-changed-files/src/lib.ts index 2d2443d0c..e2c38b321 100644 --- a/list-targets-with-changed-files/src/lib.ts +++ b/list-targets-with-changed-files/src/lib.ts @@ -20,7 +20,6 @@ export interface TargetConfig { aws_region: string; s3_bucket_name_tfmigrate_history: string; template_dir: string; - gcs_bucket_name_plan_file: string; aws_assume_role_arn: string | undefined; gcp_service_account: string | undefined; diff --git a/schema/tfaction-root.json b/schema/tfaction-root.json index 4c94efd96..c83100de6 100644 --- a/schema/tfaction-root.json +++ b/schema/tfaction-root.json @@ -58,9 +58,6 @@ "gcp_workload_identity_provider": { "$ref": "#/$defs/GCPWorkloadIdentityProvider" }, - "gcs_bucket_name_plan_file": { - "$ref": "#/$defs/GCSBucketNamePlanFile" - }, "gcs_bucket_name_tfmigrate_history": { "$ref": "#/$defs/GCSBucketNameTfmigrateHistory" }, diff --git a/schema/tfaction.json b/schema/tfaction.json index c07222aed..10b76efd6 100644 --- a/schema/tfaction.json +++ b/schema/tfaction.json @@ -32,9 +32,6 @@ "$ref": "#/$defs/Envs" }, - "gcs_bucket_name_plan_file": { - "$ref": "#/$defs/GCSBucketNamePlanFile" - }, "gcp_workload_identity_provider": { "$ref": "#/$defs/GCPWorkloadIdentityProvider" },