Complete the code to deploy a SCADA platform on a cloud service using the correct command.
cloud-cli deploy scada-platform --name [1]The command requires the platform name after the --name flag. mySCADA is a valid and clear name.
Complete the code to check the status of the SCADA platform in the cloud.
cloud-cli scada-platform status --id [1]The --id flag expects the unique identifier of the SCADA platform, such as 12345.
Fix the error in the command to scale the SCADA platform instances.
cloud-cli scada-platform scale --instances [1]The number of instances must be a positive integer. 10 is correct, while words or negative numbers cause errors.
Fill both blanks to create a monitoring alert rule for CPU usage above a threshold.
cloud-cli alert create --metric [1] --threshold [2]
The metric to monitor is cpu_usage and the threshold is set to 80 percent.
Fill all three blanks to configure a secure connection to the SCADA cloud platform.
cloud-cli connect --host [1] --port [2] --use-ssl [3]
The host is the SCADA cloud domain, port 443 is standard for SSL, and true enables secure SSL connection.