
IMPORTANT: The file content has been truncated.
Status: Showing lines 3501-3542 of 3542 total lines.
Action: To read more of the file, you can use the 'offset' and 'limit' parameters in a subsequent 'read_file' call. For example, to read the next section of the file, use offset: 3542.

--- FILE CONTENT (truncated) ---
        aggregate_failures do
          expect(Helper).to have_received(:run!)
            .with(cluster1_plan_cmd_production_opensearch_cluster)
          expect(Helper).to have_received(:run!)
            .with(cluster1_plan_cmd_staging_opensearch_cluster)
        end
      end

      it 'passes the services config to "terraform plan"' do
        aggregate_failures do
          expect(Helper).to have_received(:run!).with(cluster1_plan_cmd_production_service)
          expect(Helper).to have_received(:run!).with(cluster1_plan_cmd_staging_service)
        end
      end

      it 'passes the loadbalancer config to "terraform plan"' do
        aggregate_failures do
          expect(Helper).to have_received(:run!)
            .with(cluster1_plan_cmd_production_shared_loadbalancer)
          expect(Helper).to have_received(:run!)
            .with(cluster1_plan_cmd_staging_shared_loadbalancer)
        end
      end

      it 'passes the cluster 2 config to "terraform plan"' do
        aggregate_failures do
          expect(Helper).to have_received(:run!).with(cluster2_plan_cmd_production)
          expect(Helper).to have_received(:run!).with(cluster2_plan_cmd_staging)
        end
      end

      it 'passes the cluster 3 config to "terraform plan"' do
        expect(Helper).to have_received(:run!).with(cluster3_plan_cmd_staging)
      end

      it 'passes the cluster 4 config to "terraform plan"' do
        expect(Helper).to have_received(:run!).with(cluster4_plan_cmd_production)
      end
    end
  end
end
