リソース検出

Discoverはすでにリソース・マネージャを使用してOracle Cloud Infrastructureリソースをデプロイしています。

Oracle Cloud Infrastructure (OCI)リソース・マネージャを使用して、コンパートメント内のデプロイ済リソースを検索し、それらをTerraform構成および状態ファイルにエクスポートできます。

リソース検出により、手動管理インフラストラクチャからTerraform管理インフラストラクチャへの移行が簡略化されます。1つのコマンドを使用して、既存のコンパートメントのベースライン構成および状態を取得するファイルを生成できます。

重要

リソース検出は移行ツールではありません。リソースをクローニングまたは移行する場合、リソース検出によって生成される構成が開始点になります。これらは変更が必要な場合があります。

Terraformの新しい構成ファイルおよび状態ファイルの一般的なユースケースは次のとおりです:

  • TerraformがHashiCorp Configuration Language (HCL)構文を使用してOracle Cloud Infrastructureリソースを表す方法を学習します。
  • 新しいテナンシまたはリージョンでの既存のインフラストラクチャ・アーキテクチャの複製または再構築。
  • 状態ドリフトの検出。レポートを実行して、Terraform管理リソースの状態が変更され、基本構成と異なっているかどうかを確認します。

リソースを検出するには、Terraformがリソースを表す方法を確認するにはのステップに従います。作成されたスタックには、生成されたTerraformの構成および状態ファイルが含まれます。これらはソース・コンパートメントでサポートされているリソースに対応しています。

コンパートメントから作成されたスタックは、コンパートメント全体のサポートされているリソースすべてを適切なスコープで表します。テナンシのルート・コンパートメントを選択すると、スコープはユーザーやグループなどのテナンシ・レベルになります。非ルート・コンパートメントを選択した場合、スコープはコンピュート・インスタンスなどのコンパートメント・レベルになります。

スタックの作成がサポートされるのは、単一のコンパートメントからのみです。ネストされたコンパートメントからスタックを作成することはできません。

コンソールの使用

Terraformがリソースをどのように表しているかを確認するには

TerraformがHashiCorp Configuration Language (HCL)構文を使用してOracle Cloud Infrastructureリソースを表す方法を学習します。

  1. コンパートメントからスタックを作成することで、既存のインフラストラクチャを取得します。

    「スタックの作成」ページの主なステップ:

    1. 「Terraformの構成のオリジンを選択します」で、「既存のコンパートメント」を選択します

    2. 「リソース検出のコンパートメント」(取得しようとするリソースを含むコンパートメント)を選択します。

      リスト範囲のコンパートメントはデフォルトで設定されています。

    3. 「リソース検出のリージョン」(取得しようとするリソースを含むリージョン)を選択します。
    4. 特定のリソース検出でサポートされているサービスをフィルタするには、「選択済」を選択し、目的のサービスを選択します。

      ノート

      この設定は、スタックを後で編集するときは変更できません。
    5. 「次」を2回クリックし、「作成」をクリックしてスタックを作成します。

    新しいスタックの詳細ページが表示されます。作業リクエストがスタックで実行されます。作業リクエストが終了すると、スタックのTerraform構成ファイルを生成するジョブが実行されます。ジョブが終了すると、選択したコンパートメントのリソースが、生成された構成に取得されます。

  2. 生成されたTerraform構成ファイルをダウンロードします: スタック詳細ページの「スタック情報」タブで、「ダウンロード」をクリックします
    ノート

    または、生成されたTerraform構成ファイルをコード・エディタで表示できます。詳細は、「コード・エディタを使用した構成の編集」を参照してください。
別のコンパートメントに既存のインフラストラクチャを再作成(クローニング)するには
  1. コンパートメントからスタックを作成することで、既存のインフラストラクチャを取得します。

    新しいスタックの詳細ページが表示されます。作業リクエストがスタックで実行されます。作業リクエストが終了すると、スタックのTerraform構成を生成するジョブが実行されます。ジョブが終了すると、選択したコンパートメントのリソースが、生成された構成に取得されます。

  2. 生成されたTerraform構成ファイルのダウンロード: スタック詳細ページの「スタック情報」タブで、「ダウンロード」をクリックします
  3. vars.tfファイル(ダウンロードしたTerraform構成ファイル内の変数)を編集して、宛先のcompartment_ocidおよびregionを指定します。

    例:

    variable "compartment_ocid" {
      default = "ocid1.compartment.oc1..uniqueid"
    }
    variable "region" {
      default = "us-phoenix-1"
    }
  4. 宛先リージョンの可用性ドメインがソース・リージョンより多いか少ない場合は、vars.tfファイルを編集して、正しい数の可用性ドメインを指定します。

    たとえば、3つの可用性ドメインを持つリージョンからクローニングし、1つの可用性ドメインのみを持つリージョンにインフラストラクチャを再作成する場合は、2番目と3番目の可用性ドメインへの参照を削除します。

    3つの可用性ドメインを示す例:

    data oci_identity_availability_domain export_NzDH-EU-FRANKFURT-1-AD-1 {
      compartment_id = var.compartment_ocid
      ad_number      = "1"
    }
    data oci_identity_availability_domain export_NzDH-EU-FRANKFURT-1-AD-2 {
      compartment_id = var.compartment_ocid
      ad_number      = "2"
    }
    data oci_identity_availability_domain export_NzDH-EU-FRANKFURT-1-AD-3 {
      compartment_id = var.compartment_ocid
      ad_number      = "3"
    }

    1つの可用性ドメインを示す例:

    data oci_identity_availability_domain export_NzDH-EU-FRANKFURT-1-AD-1 {
      compartment_id = var.compartment_ocid
      ad_number      = "1"
    }
  5. 編集した構成ファイルを使用して2つ目のスタックを作成します。

    1. ナビゲーション・メニューを開き、「開発者サービス」をクリックします。「リソース・マネージャ」で、「スタック」をクリックします。
    2. 「リスト範囲」で、作業する権限があるコンパートメントを選択します。ページが更新されて、そのコンパートメントのリソースのみが表示されます。使用するコンパートメントがわからない場合は、管理者に連絡してください。

    3. 「スタックの作成」をクリックします
    4. 「スタックの作成」ダイアログで、「マイ構成」をクリックします
    5. ダウンロードしたTerraform構成(.zip)ファイルを追加します。

      ここでは、他のフィールドはそのままにしておくことができます。詳細は、Zipファイルからのスタックの作成を参照してください。

    6. 「Terraformバージョン」で、リソース検出でサポートされているバージョンを選択します。
    7. 「次」をクリックして、「変数の構成」パネルを表示します。
    8. compartment_ocid変数を更新して、クローニングされたリソースの宛先コンパートメントを指定します。
    9. 別のリージョンにリソースをクローニングする場合は、region変数を更新します。
    10. 「次」をクリックして、「確認」パネルを表示します。
    11. スタックの作成時にリソースを自動的にプロビジョニングするには、「適用の実行」を選択します。

    12. 「作成」をクリックしてスタックを作成します。

      2つ目のスタックのスタック詳細ページが表示されます。

      「適用の実行」を選択した場合、リソース・マネージャは新しいスタックで適用アクションを実行します。

      リソースは、指定されたコンパートメントおよびリージョンにクローニングされます。

  6. 新しいスタックに対して「適用の実行」を選択しなかった場合は、(オプションでPlanを実行した後に)今すぐ適用を実行します:
    1. (オプション)スタックが期待どおりにリソースを作成することを確認するには、計画ジョブを実行します
    2. リソースをクローニングします: 新しいスタックで適用ジョブを実行します。

      リソースは、指定されたコンパートメントおよびリージョンにクローニングされます。

CLIの使用

ノート

CLIの使用方法の詳細は、コマンドライン・インタフェース(CLI)を参照してください。CLIコマンドで使用できるフラグおよびオプションの完全なリストについては、CLIのヘルプを参照してください。
リソースを検出するには(コンパートメントからスタックを作成)

コマンド・プロンプトを開き、oci resource-manager stack create-from-compartmentを実行して、指定したコンパートメントおよびリージョンでスタックを作成します:

oci resource-manager stack create-from-compartment --config-source-compartment-id <source_compartment_OCID> --config-source-region <source_region> --config-source-services-to-discover [<services>] –-compartment-id <compartment_OCID> --terraform-version <version --display-name "<friendly_name>" --description "<description>" 

たとえば(coreおよびdatabaseサービスからサポートされているリソースを検出します。ソース・コンパートメントはルート・コンパートメントではありません):

oci resource-manager stack create-from-compartment --config-source-compartment-id ocid1.tenancy.oc1..uniqueid1 --config-source-region PHX --config-source-services-to-discover [core,database] –-compartment-id ocid1.tenancy.oc1..uniqueid2 --terraform-version 0.13.X --display-name "Stack From Compartment ABC" --description "List of Resources to Duplicate"
レスポンスの例
{
  "data": {
    "config-source": {
      "config-source-type": "COMPARTMENT_CONFIG_SOURCE"
    },
    "defined-tags": {},
    "display-name": "Stack from Compartment ABC",
    "freeform-tags": {},
    "id": "ocid1.ormstack.oc1..uniqueid",
    "lifecycle-state": "CREATING",
    "time-created": "2019-04-03T18:26:56.299000+00:00",
    "variables": {
      "compartment_ocid": "ocid1.compartment.oc1..uniqueid1", 
      "region": "us-phoenix-1"
    }
  }
}
{
  "data": {
    "compartment-id": "ocid1.compartment.oc1..uniqueid2",
    "config-source": {
      "compartment-id": "ocid1.compartment.oc1..uniqueid1",
      "config-source-type": "COMPARTMENT_CONFIG_SOURCE",
      "region": "PHX",
      "working-directory": null
    },
    "defined-tags": {},
    "description": "List of Resources to Duplicate",
    "display-name": "Stack From Compartment ABC",
    "freeform-tags": {},
    "id": "ocid1.ormstack.oc1.phx.uniqueid",
    "lifecycle-state": "CREATING",
    "stack-drift-status": "NOT_CHECKED",
    "terraform-version": "0.12.x",
    "time-created": "2020-06-01T18:25:56.102000+00:00",
    "time-drift-last-checked": null,
    "variables": {}
  },
  "etag": "009010cb57f5162655c6a34f5ef8834f204a734df81e4baa696a7d830488ea25",
  "opc-work-request-id": "ocid1.ormworkrequest.oc1.phx.uniqueid"
}
検出するリソースをリストするには

この項では、特定のコンパートメントOCIDからのリソース検出でサポートされているサービスを確認する方法について説明します。

コンパートメントからスタックを作成すると、スタックは、コンパートメント全体のサポートされているリソースすべてを適切なスコープで表します。テナンシのルート・コンパートメントを選択すると、スコープはユーザーやグループなどのテナンシ・レベルになります。ルート以外のコンパートメントを選択すると、スコープはComputeインスタンスなどのコンパートメント・レベルになります。

コマンド・プロンプトを開き、oci resource-manager stack list-resource-discovery-servicesを実行して、リソース検出でサポートされているサービスのリストを取得します(コンパートメントOCIDは認可にのみ使用されます):

oci resource-manager stack list-resource-discovery-services --compartment-id <compartment_OCID>

APIの使用

リソースを検出(コンパートメントからスタックを作成)するには、configSourceTypeCOMPARTMENT_CONFIG_SOURCEに設定してCreateStack操作を使用します。

出力ファイルの内容

ノート

リソース検出を使用して取得される一部のサポート対象リソースに属性がありません。詳細は、検出されたリソースに属性がないを参照してください。

リソース検出は、アクティブまたは使用可能な状態のリソースを検出します。終了したか非アクティブにされたリソースは、通常、生成される構成から除外されます。

デフォルトでは、検出されたリソースのTerraform名は、そのリソースの表示名と同じ名前を共有します(存在する場合)。

リソースの属性には、OCIサービスによって返された値が移入されます。

場合によっては、必須またはオプションの属性がOCIサービスから検出できず、生成されたTerraform構成から除外されることがあります。除外はこのサービスで想定された動作で、これによって特定の機密属性やシークレットの検出を妨げることができます。このような場合、プレースホルダ値が次のようなコメントとともに設定されます:

example-attribute = "<placeholder for missing required attribute>" #Required attribute not found in discovery, placeholder value set to avoid plan failure

欠落している必須属性もライフサイクルignore_changesに追加されます。この追加は、手動管理インフラストラクチャをTerraform管理インフラストラクチャに移行する際のTerraformプランの失敗を回避するために行われます。このようなフィールドに変更を加えても、Terraformプランには反映されません。このようなフィールドを更新する場合は、それらをignore_changesから削除します。

可用性ドメインに依存するリソースが、availability_domain.tfファイルの下に生成されます。次に例を示します。

  • oci_core_boot_volume
  • oci_file_storage_file_system
  • oci_file_storage_mount_target
  • oci_file_storage_snapshot

サポートされているリソース

サポートされている各サービスには、1つ以上の検出可能なリソースがあります。

サービスでサポートされるリソース

感嘆

  • oci_adm_knowledge_base
  • oci_adm_remediation_recipe
  • oci_adm_remediation_run
  • oci_adm_vulnerability_audit

ai_anomaly_detection

  • oci_ai_anomaly_detection_ai_private_endpoint
  • oci_ai_anomaly_detection_data_asset
  • oci_ai_anomaly_detection_detect_anomaly_job
  • oci_ai_anomaly_detection_model
  • oci_ai_anomaly_detection_project

ai_document

  • oci_ai_document_model
  • oci_ai_document_processor_job
  • oci_ai_document_project

ai_language

  • oci_ai_language_endpoint
  • oci_ai_language_model
  • oci_ai_language_project

ai_vision

  • oci_ai_vision_model
  • oci_ai_vision_project

分析

  • oci_analytics_analytics_instance

announcements_service

  • oci_announcements_service_announcement_subscription
  • oci_announcements_service_announcement_subscriptions_actions_change_compartment
  • oci_announcements_service_announcement_subscriptions_filter_group

ゲートウェイ

  • oci_apigateway_api
  • oci_apigateway_certificate
  • oci_apigateway_deployment
  • oci_apigateway_gateway
  • oci_apigateway_subscriber
  • oci_apigateway_usage_plan

吐く

  • oci_apm_apm_domain

apm_config

  • oci_apm_config_config

apm_synthetics

  • oci_apm_synthetics_dedicated_vantage_point
  • oci_apm_synthetics_monitor
  • oci_apm_synthetics_on_premise_vantage_point
  • oci_apm_synthetics_on_premise_vantage_point_worker
  • oci_apm_synthetics_script

アーティファクト

  • oci_artifacts_container_configuration
  • oci_artifacts_container_image_signature
  • oci_artifacts_container_repository
  • oci_artifacts_generic_artifact
  • oci_artifacts_repository

auto_scaling

  • oci_autoscaling_auto_scaling_configuration

要塞

  • oci_bastion_bastion
  • oci_bastion_session

ケツ

  • oci_bds_auto_scaling_configuration
  • oci_bds_bds_instance
  • oci_bds_bds_instance_api_key
  • oci_bds_bds_instance_metastore_config

ブロックチェーン

  • oci_blockchain_blockchain_platform
  • oci_blockchain_osn
  • oci_blockchain_peer

予算

  • oci_budget_alert_rule
  • oci_budget_budget

capacity_management

  • oci_capacity_management_occ_availability_catalog
  • oci_capacity_management_occ_capacity_request

certificates_management

  • oci_certificates_management_ca_bundle
  • oci_certificates_management_certificate
  • oci_certificates_management_certificate_authority

cloud_bridge

  • oci_cloud_bridge_agent
  • oci_cloud_bridge_agent_dependency
  • oci_cloud_bridge_agent_plugin
  • oci_cloud_bridge_asset
  • oci_cloud_bridge_asset_source
  • oci_cloud_bridge_discovery_schedule
  • oci_cloud_bridge_environment
  • oci_cloud_bridge_inventory

cloud_guard

  • oci_cloud_guard_data_mask_rule
  • oci_cloud_guard_data_source
  • oci_cloud_guard_detector_recipe
  • oci_cloud_guard_managed_list
  • oci_cloud_guard_responder_recipe
  • oci_cloud_guard_security_recipe
  • oci_cloud_guard_security_zone
  • oci_cloud_guard_target

cloud_migrations

  • oci_cloud_migrations_migration
  • oci_cloud_migrations_migration_asset
  • oci_cloud_migrations_migration_plan
  • oci_cloud_migrations_replication_schedule
  • oci_cloud_migrations_target_asset

compute_cloud_at_customer

  • oci_compute_cloud_at_customer_ccc_infrastructure
  • oci_compute_cloud_at_customer_ccc_upgrade_schedule

container_instances

  • oci_container_instances_container_instance

コンテナエンジン

  • oci_containerengine_addon
  • oci_containerengine_cluster
  • oci_containerengine_cluster_workload_mapping
  • oci_containerengine_node_pool
  • oci_containerengine_virtual_node_pool

コア

  • oci_core_boot_volume
  • oci_core_boot_volume_backup
  • oci_core_capture_filter
  • oci_core_cluster_network
  • oci_core_compute_capacity_report
  • oci_core_compute_capacity_reservation
  • oci_core_compute_capacity_topology
  • oci_core_compute_cluster
  • oci_core_compute_image_capability_schema
  • oci_core_console_history
  • oci_core_cpe
  • oci_core_cross_connect
  • oci_core_cross_connect_group
  • oci_core_dedicated_vm_host
  • oci_core_dhcp_options
  • oci_core_drg
  • oci_core_drg_attachment
  • oci_core_drg_route_distribution
  • oci_core_drg_route_table
  • oci_core_drg_route_table_route_rule
  • oci_core_image
  • oci_core_instance
  • oci_core_instance_configuration
  • oci_core_instance_console_connection
  • oci_core_instance_pool
  • oci_core_instance_pool_instance
  • oci_core_internet_gateway
  • oci_core_ipsec
  • oci_core_ipv6
  • oci_core_local_peering_gateway
  • oci_core_nat_gateway
  • oci_core_network_security_group
  • oci_core_network_security_group_security_rule
  • oci_core_private_ip
  • oci_core_public_ip
  • oci_core_public_ip_pool
  • oci_core_remote_peering_connection
  • oci_core_route_table
  • oci_core_security_list
  • oci_core_service_gateway
  • oci_core_subnet
  • oci_core_vcn
  • oci_core_virtual_circuit
  • oci_core_vlan
  • oci_core_vnic_attachment
  • oci_core_volume
  • oci_core_volume_attachment
  • oci_core_volume_backup
  • oci_core_volume_backup_policy
  • oci_core_volume_backup_policy_assignment
  • oci_core_volume_group
  • oci_core_volume_group_backup
  • oci_core_vtap

data_labeling_service

  • oci_data_labeling_service_dataset

data_safe

  • oci_data_safe_alert
  • oci_data_safe_audit_archive_retrieval
  • oci_data_safe_audit_policy
  • oci_data_safe_audit_profile
  • oci_data_safe_audit_trail
  • oci_data_safe_data_safe_private_endpoint
  • oci_data_safe_discovery_job
  • oci_data_safe_discovery_jobs_result
  • oci_data_safe_library_masking_format
  • oci_data_safe_masking_policies_masking_column
  • oci_data_safe_masking_policy
  • oci_data_safe_on_prem_connector
  • oci_data_safe_report
  • oci_data_safe_report_definition
  • oci_data_safe_sdm_masking_policy_difference
  • oci_data_safe_security_assessment
  • oci_data_safe_sensitive_data_model
  • oci_data_safe_sensitive_data_models_sensitive_column
  • oci_data_safe_sensitive_type
  • oci_data_safe_target_alert_policy_association
  • oci_data_safe_target_database
  • oci_data_safe_target_database_peer_target_database
  • oci_data_safe_unset_security_assessment_baseline
  • oci_data_safe_user_assessment

データベース

  • oci_database_application_vip
  • oci_database_autonomous_container_database
  • oci_database_autonomous_container_database_dataguard_association
  • oci_database_autonomous_database
  • oci_database_autonomous_exadata_infrastructure
  • oci_database_autonomous_vm_cluster
  • oci_database_backup
  • oci_database_backup_destination
  • oci_database_cloud_autonomous_vm_cluster
  • oci_database_cloud_exadata_infrastructure
  • oci_database_cloud_vm_cluster
  • oci_database_database
  • oci_database_database_software_image
  • oci_database_db_home
  • oci_database_db_node
  • oci_database_db_node_console_history
  • oci_database_db_system
  • oci_database_exadata_infrastructure
  • oci_database_external_container_database
  • oci_database_external_database_connector
  • oci_database_external_non_container_database
  • oci_database_external_pluggable_database
  • oci_database_key_store
  • oci_database_oneoff_patch
  • oci_database_pluggable_database
  • oci_database_vm_cluster
  • oci_database_vm_cluster_add_virtual_machine
  • oci_database_vm_cluster_network
  • oci_database_vm_cluster_remove_virtual_machine

database_migration

  • oci_database_migration_connection
  • oci_database_migration_migration

database_tools

  • oci_database_tools_database_tools_connection
  • oci_database_tools_database_tools_private_endpoint

データカタログ

  • oci_datacatalog_catalog
  • oci_datacatalog_catalog_private_endpoint
  • oci_datacatalog_connection
  • oci_datacatalog_data_asset
  • oci_datacatalog_metastore

データフロー

  • oci_dataflow_application
  • oci_dataflow_pool
  • oci_dataflow_private_endpoint
  • oci_dataflow_run_statement
  • oci_dataflow_sql_endpoint

データ統合

  • oci_dataintegration_workspace
  • oci_dataintegration_workspace_application
  • oci_dataintegration_workspace_application_patch
  • oci_dataintegration_workspace_application_schedule
  • oci_dataintegration_workspace_application_task_schedule
  • oci_dataintegration_workspace_export_request
  • oci_dataintegration_workspace_folder
  • oci_dataintegration_workspace_import_request
  • oci_dataintegration_workspace_project
  • oci_dataintegration_workspace_task

データサイエンス

  • oci_datascience_data_science_private_endpoint
  • oci_datascience_job
  • oci_datascience_job_run
  • oci_datascience_model
  • oci_datascience_model_deployment
  • oci_datascience_model_provenance
  • oci_datascience_model_version_set
  • oci_datascience_notebook_session
  • oci_datascience_pipeline
  • oci_datascience_pipeline_run
  • oci_datascience_project

ヤマドリタケ

  • oci_devops_build_pipeline
  • oci_devops_build_pipeline_stage
  • oci_devops_build_run
  • oci_devops_connection
  • oci_devops_deploy_artifact
  • oci_devops_deploy_environment
  • oci_devops_deploy_pipeline
  • oci_devops_deploy_stage
  • oci_devops_deployment
  • oci_devops_project
  • oci_devops_repository
  • oci_devops_repository_mirror
  • oci_devops_repository_ref
  • oci_devops_trigger

disaster_recovery

  • oci_disaster_recovery_dr_plan
  • oci_disaster_recovery_dr_plan_execution
  • oci_disaster_recovery_dr_protection_group

dns

  • oci_dns_resolver
  • oci_dns_resolver_endpoint
  • oci_dns_rrset
  • oci_dns_steering_policy
  • oci_dns_steering_policy_attachment
  • oci_dns_tsig_key
  • oci_dns_view
  • oci_dns_zone

em_warehouse

  • oci_em_warehouse_em_warehouse

電子メール

  • oci_email_dkim
  • oci_email_email_domain
  • oci_email_sender
  • oci_email_suppression

イベント

  • oci_events_rule

file_storage

  • oci_file_storage_export
  • oci_file_storage_file_system
  • oci_file_storage_filesystem_snapshot_policy
  • oci_file_storage_mount_target
  • oci_file_storage_outbound_connector
  • oci_file_storage_replication
  • oci_file_storage_snapshot

関数

  • oci_functions_application
  • oci_functions_function

fusion_apps

  • oci_fusion_apps_fusion_environment
  • oci_fusion_apps_fusion_environment_admin_user
  • oci_fusion_apps_fusion_environment_data_masking_activity
  • oci_fusion_apps_fusion_environment_family
  • oci_fusion_apps_fusion_environment_refresh_activity
  • oci_fusion_apps_fusion_environment_service_attachment

generative_ai

  • oci_generative_ai_dedicated_ai_cluster
  • oci_generative_ai_endpoint
  • oci_generative_ai_model

golden_gate

  • oci_golden_gate_connection
  • oci_golden_gate_connection_assignment
  • oci_golden_gate_database_registration
  • oci_golden_gate_deployment
  • oci_golden_gate_deployment_backup
  • oci_golden_gate_deployment_certificate

health_checks

  • oci_health_checks_http_monitor
  • oci_health_checks_ping_monitor

同一性

  • oci_identity_api_key
  • oci_identity_auth_token
  • oci_identity_authentication_policy
  • oci_identity_compartment
  • oci_identity_customer_secret_key
  • oci_identity_db_credential
  • oci_identity_domain
  • oci_identity_dynamic_group
  • oci_identity_group
  • oci_identity_identity_provider
  • oci_identity_idp_group_mapping
  • oci_identity_import_standard_tags_management
  • oci_identity_network_source
  • oci_identity_policy
  • oci_identity_smtp_credential
  • oci_identity_tag
  • oci_identity_tag_default
  • oci_identity_tag_namespace
  • oci_identity_ui_password
  • oci_identity_user
  • oci_identity_user_group_membership

identity_data_plane

  • oci_identity_data_plane_generate_scoped_access_token

identity_domains

  • oci_identity_domains_account_recovery_setting
  • oci_identity_domains_api_key
  • oci_identity_domains_app
  • oci_identity_domains_app_role
  • oci_identity_domains_approval_workflow
  • oci_identity_domains_approval_workflow_assignment
  • oci_identity_domains_approval_workflow_step
  • oci_identity_domains_auth_token
  • oci_identity_domains_authentication_factor_setting
  • oci_identity_domains_cloud_gate
  • oci_identity_domains_cloud_gate_mapping
  • oci_identity_domains_cloud_gate_server
  • oci_identity_domains_condition
  • oci_identity_domains_customer_secret_key
  • oci_identity_domains_dynamic_resource_group
  • oci_identity_domains_grant
  • oci_identity_domains_group
  • oci_identity_domains_identity_propagation_trust
  • oci_identity_domains_identity_provider
  • oci_identity_domains_identity_setting
  • oci_identity_domains_kmsi_setting
  • oci_identity_domains_my_api_key
  • oci_identity_domains_my_auth_token
  • oci_identity_domains_my_customer_secret_key
  • oci_identity_domains_my_oauth2client_credential
  • oci_identity_domains_my_request
  • oci_identity_domains_my_smtp_credential
  • oci_identity_domains_my_support_account
  • oci_identity_domains_my_user_db_credential
  • oci_identity_domains_network_perimeter
  • oci_identity_domains_notification_setting
  • oci_identity_domains_oauth_client_certificate
  • oci_identity_domains_oauth_partner_certificate
  • oci_identity_domains_oauth2client_credential
  • oci_identity_domains_password_policy
  • oci_identity_domains_policy
  • oci_identity_domains_rule
  • oci_identity_domains_security_question
  • oci_identity_domains_security_question_setting
  • oci_identity_domains_setting
  • oci_identity_domains_smtp_credential
  • oci_identity_domains_user
  • oci_identity_domains_user_db_credential

統合

  • oci_integration_integration_instance

JMS

  • oci_jms_fleet

kms

  • oci_kms_ekms_private_endpoint
  • oci_kms_key
  • oci_kms_key_version
  • oci_kms_sign
  • oci_kms_vault
  • oci_kms_verify

license_manager

  • oci_license_manager_configuration
  • oci_license_manager_license_record
  • oci_license_manager_product_license

制限

  • oci_limits_quota

load_balancer

  • oci_load_balancer_backend
  • oci_load_balancer_backend_set
  • oci_load_balancer_certificate
  • oci_load_balancer_hostname
  • oci_load_balancer_listener
  • oci_load_balancer_load_balancer
  • oci_load_balancer_load_balancer_routing_policy
  • oci_load_balancer_path_route_set
  • oci_load_balancer_rule_set
  • oci_load_balancer_ssl_cipher_suite

log_analytics

  • oci_log_analytics_log_analytics_import_custom_content
  • oci_log_analytics_log_analytics_object_collection_rule
  • oci_log_analytics_log_analytics_preferences_management
  • oci_log_analytics_log_analytics_resource_categories_management
  • oci_log_analytics_log_analytics_unprocessed_data_bucket_management
  • oci_log_analytics_namespace_ingest_time_rule
  • oci_log_analytics_namespace_scheduled_task

ロギング

  • oci_logging_log
  • oci_logging_log_group
  • oci_logging_log_saved_search
  • oci_logging_unified_agent_configuration

management_agent

  • oci_management_agent_management_agent
  • oci_management_agent_management_agent_data_source
  • oci_management_agent_management_agent_install_key

市場

  • oci_marketplace_accepted_agreement
  • oci_marketplace_publication

media_services

  • oci_media_services_media_asset
  • oci_media_services_media_workflow
  • oci_media_services_media_workflow_configuration
  • oci_media_services_media_workflow_job
  • oci_media_services_stream_cdn_config
  • oci_media_services_stream_distribution_channel
  • oci_media_services_stream_packaging_config

metering_computation

  • oci_metering_computation_custom_table
  • oci_metering_computation_query
  • oci_metering_computation_schedule
  • oci_metering_computation_usage_carbon_emission
  • oci_metering_computation_usage_carbon_emissions_query
  • oci_metering_computation_usage_statement_email_recipients

監視

  • oci_monitoring_alarm
  • oci_monitoring_alarm_suppression

mysql

  • oci_mysql_channel
  • oci_mysql_heat_wave_cluster
  • oci_mysql_mysql_backup
  • oci_mysql_mysql_configuration
  • oci_mysql_mysql_db_system
  • oci_mysql_replica

network_firewall

  • oci_network_firewall_network_firewall
  • oci_network_firewall_network_firewall_policy
  • oci_network_firewall_network_firewall_policy_address_list
  • oci_network_firewall_network_firewall_policy_application
  • oci_network_firewall_network_firewall_policy_application_group
  • oci_network_firewall_network_firewall_policy_decryption_profile
  • oci_network_firewall_network_firewall_policy_decryption_rule
  • oci_network_firewall_network_firewall_policy_mapped_secret
  • oci_network_firewall_network_firewall_policy_security_rule
  • oci_network_firewall_network_firewall_policy_service
  • oci_network_firewall_network_firewall_policy_service_list
  • oci_network_firewall_network_firewall_policy_url_list

network_load_balancer

  • oci_network_load_balancer_backend
  • oci_network_load_balancer_backend_set
  • oci_network_load_balancer_backend_sets_health_checker
  • oci_network_load_balancer_listener
  • oci_network_load_balancer_network_load_balancer

nosql

  • oci_nosql_index
  • oci_nosql_table

object_storage

  • oci_objectstorage_bucket
  • oci_objectstorage_object
  • oci_objectstorage_object_lifecycle_policy
  • oci_objectstorage_preauthrequest
  • oci_objectstorage_replication_policy

オセ

  • oci_oce_oce_instance

ocvp

  • oci_ocvp_cluster
  • oci_ocvp_esxi_host
  • oci_ocvp_sddc

オダ

  • oci_oda_oda_instance
  • oci_oda_oda_private_endpoint
  • oci_oda_oda_private_endpoint_attachment
  • oci_oda_oda_private_endpoint_scan_proxy

オン

  • oci_ons_notification_topic
  • oci_ons_subscription

オパ

  • oci_opa_opa_instance

検索を開く

  • oci_opensearch_opensearch_cluster

operator_access_control

  • oci_operator_access_control_operator_control
  • oci_operator_access_control_operator_control_assignment

opsi

  • oci_opsi_awr_hub
  • oci_opsi_awr_hub_source
  • oci_opsi_database_insight
  • oci_opsi_enterprise_manager_bridge
  • oci_opsi_exadata_insight
  • oci_opsi_host_insight
  • oci_opsi_news_report
  • oci_opsi_operations_insights_private_endpoint
  • oci_opsi_operations_insights_warehouse
  • oci_opsi_operations_insights_warehouse_download_warehouse_wallet
  • oci_opsi_operations_insights_warehouse_rotate_warehouse_wallet
  • oci_opsi_operations_insights_warehouse_user
  • oci_opsi_opsi_configuration

オプティマイザ

  • oci_optimizer_profile

os_management_hub

  • oci_os_management_hub_lifecycle_environment
  • oci_os_management_hub_managed_instance_group
  • oci_os_management_hub_management_station
  • oci_os_management_hub_profile
  • oci_os_management_hub_software_source

浸透

  • oci_osmanagement_managed_instance
  • oci_osmanagement_managed_instance_group
  • oci_osmanagement_software_source

osp_gateway

  • oci_osp_gateway_address_action_verification
  • oci_osp_gateway_subscription

psql

  • oci_psql_backup
  • oci_psql_configuration
  • oci_psql_db_system

キュー

  • oci_queue_queue

リカバリ

  • oci_recovery_protected_database
  • oci_recovery_protection_policy
  • oci_recovery_recovery_service_subnet

レディス

  • oci_redis_redis_cluster

リソース・マネージャ

  • oci_resourcemanager_private_endpoint

学士

  • oci_sch_service_connector

service_mesh

  • oci_service_mesh_access_policy
  • oci_service_mesh_ingress_gateway
  • oci_service_mesh_ingress_gateway_route_table
  • oci_service_mesh_mesh
  • oci_service_mesh_virtual_deployment
  • oci_service_mesh_virtual_service
  • oci_service_mesh_virtual_service_route_table

stack_monitoring

  • oci_stack_monitoring_baselineable_metric
  • oci_stack_monitoring_config
  • oci_stack_monitoring_discovery_job
  • oci_stack_monitoring_metric_extension
  • oci_stack_monitoring_monitored_resource
  • oci_stack_monitoring_monitored_resource_task
  • oci_stack_monitoring_monitored_resource_type
  • oci_stack_monitoring_monitored_resources_associate_monitored_resource
  • oci_stack_monitoring_monitored_resources_list_member
  • oci_stack_monitoring_monitored_resources_search
  • oci_stack_monitoring_monitored_resources_search_association
  • oci_stack_monitoring_process_set

ストリーミング

  • oci_streaming_connect_harness
  • oci_streaming_stream
  • oci_streaming_stream_pool

usage_proxy

  • oci_usage_proxy_subscription_redeemable_user

ボールト

  • oci_vault_secret

vbs_inst

  • oci_vbs_inst_vbs_instance

visual_builder

  • oci_visual_builder_vb_instance

vn_monitoring

  • oci_vn_monitoring_path_analysi
  • oci_vn_monitoring_path_analyzer_test

vulnerability_scanning

  • oci_vulnerability_scanning_container_scan_recipe
  • oci_vulnerability_scanning_container_scan_target
  • oci_vulnerability_scanning_host_scan_recipe
  • oci_vulnerability_scanning_host_scan_target

ワー

  • oci_waa_web_app_acceleration
  • oci_waa_web_app_acceleration_policy

ウエース

  • oci_waas_address_list
  • oci_waas_custom_protection_rule
  • oci_waas_http_redirect
  • oci_waas_waas_policy

ウェーフ

  • oci_waf_network_address_list
  • oci_waf_web_app_firewall
  • oci_waf_web_app_firewall_policy