monkey/envs/monkey_zoo/blackbox/stop_all_gcp_machines.py

8 lines
217 B
Python
Raw Normal View History

#!/usr/bin/env python3
from gcp_test_machine_list import GCP_TEST_MACHINE_LIST
from utils.gcp_machine_handlers import GCPHandler
gcp_handler = GCPHandler()
gcp_handler.stop_machines(" ".join(GCP_TEST_MACHINE_LIST))