ホーム・リージョン停止中のDR操作の起動

問題: ホームIAMリージョンの停止中に、OCIコンソールの使用時にフル・スタックDRサービスへのアクセスが中断される可能性があります。

解決策: これにより、OCIコンソールを使用したDR計画の実行を防止できます。この場合でも、REST APIまたはその他のAPIサーフェス(CLI、Terraform、Pythonなど)を使用してDR計画の実行およびリカバリを開始できます。

次の例は、OCI CLIを使用してDR計画を実行する方法を示しています:

oci disaster-recovery dr-plan-execution create --plan-id ocid1.drplan.oc1.phx.exampleocid --execution-options file:///path/to/execution-options.json

where 'execution-options.json' is a file containing the execution options as shown below:

Content of the 'execution-options.json' file for executing a failover:
{
    "arePrechecksEnabled": true,
    "areWarningsIgnored": true,
    "planExecutionType": "FAILOVER"
}

Content of the 'execution-options.json' file for executing a failover precheck:
{
    "areWarningsIgnored": true,
    "planExecutionType": "FAILOVER_PRECHECK"
}