This guide explains how to transition from the legacy modules to the new collection modules. The new modules have some breaking changes as listed in the table below. They are also renamed to use the service name as a prefix. This naming convention makes it easier to organize and discover modules.
The new modules follow the pattern of our other OCI developer tools in that they are primarily generated based on OCI service API specifications. This results in breaking changes from our legacy modules in places where we previously added significant customizations on top of what is in the API specification. The trade-off for this cost of breaking changes is that we will be able to significantly increase our cadence of releasing new modules and features to stay up to date with OCI services. We are very open to feedback from our users, if there are features from the legacy modules that were very important to your workload please file a feature enhancement request as a Github issue and we will consider porting old features forward on a case by case basis.
Users can transition slowly to the new modules if there are some breaking changes. It is possible to use both (new and legacy) modules in your playbooks as explained below.
Both can be installed at the same time. The collection will be installed at different path.
You can install the new collection:
$ ansible-galaxy collection install oracle.oci
If the collection is imported at the top of the file, Ansible will first search for the module in collection path if it is not found it will search in the legacy modules path. If both modules have the same name, the module from the collection will take precedence.
- hosts: all
collections:
- oracle.oci
tasks:
# Module in collection
- oci_identity_policy:
option1: value
# Module in legacy modules
- oci_policy_facts:
option1: value
You can also reference a collection content by its fully qualified collection name (FQCN):
- hosts: all
tasks:
- oracle.oci.oci_identity_policy:
option1: value
- All experimental features (enabled using OCI_ANSIBLE_EXPERIMENTAL env var) have been deprecated and are not included in this new set of modules.
- Most of these features were a matter of convenience and are still achievable with the new modules. For example, the
lookup_all_attached_instances
parameter on oci_volume is removed, but users can still use theoci_compute_volume_attachment_facts
andoci_compute_instance_facts
modules to retrieve the same information.
- Most of these features were a matter of convenience and are still achievable with the new modules. For example, the
- Options to
purge
ordelete
items from lists on resources are no longer supported in majority of modules (examples: oci_identity_group, oci_load_balancer_backend_set, etc).- The default behavior for these fields has always been
purge_{resource_name}
= True, which remains true for the new modules. But there is no longer an option to specifypurge_{resource_name}
= False and only append new entries to the list. Thus, if you want to update a list you will need to supply the entire list, if you supply a subset of items they will completely replace the existing list. - This module, as an exception, supports purge and delete: oci_network_security_list.
- The default behavior for these fields has always been
- New modules consider
freeform_tags
(if specified) for idempotence unlike legacy modules which excludes them - The
wait_until
parameter has been removed in favor of keeping all specific state waiting logic internal to the modules.- The default behavior remains the same as in the legacy modules, it is just no longer possible to override the specific state you want to wait on. Users can still turn waiting logic off completely for a play using
wait: false
.
- The default behavior remains the same as in the legacy modules, it is just no longer possible to override the specific state you want to wait on. Users can still turn waiting logic off completely for a play using
- Default values have been removed in some cases which makes idempotency matching less strict. See the section "Avoiding reliance on server side default values" in the User Guide for more information.
- Parameter validation has been enhanced for complex parameters
- For complex parameters with suboptions, previously we ignored suboptions which were unrecognized. In the new modules, we validate all suboptions are known parameters so an error will be thrown for any extraneoous suboptions.
state
parameter values other thanpresent
andabsent
have now been moved to separate_actions
modules- See individual module documentation below for full details. For example,
state: stop
foroci_compute_instance
is now supported through usingaction: stop
on theoci_compute_instance_actions
module.
- See individual module documentation below for full details. For example,
No breaking changes
old name | new name | migration notes |
---|---|---|
oci_audit_configuration | oci_audit_configuration | Breaking changes:
|
oci_audit_configuration_facts | oci_audit_configuration_facts | Breaking changes:
|
oci_audit_event_facts | oci_audit_event_facts | Breaking changes:
|
No breaking changes
old name | new name | migration notes |
---|---|---|
oci_boot_volume | oci_blockstorage_boot_volume | Breaking changes:
|
oci_boot_volume_facts | oci_blockstorage_boot_volume_facts | Breaking changes:
|
oci_volume | oci_blockstorage_volume | Breaking changes:
|
oci_volume_backup | oci_blockstorage_volume_backup | Breaking changes:
|
oci_volume_backup_actions | oci_blockstorage_volume_backup_actions | Module name is the only breaking change |
oci_volume_backup_facts | oci_blockstorage_volume_backup_facts | Module name is the only breaking change |
oci_volume_backup_policy_assignment | oci_blockstorage_volume_backup_policy_assignment | Module name is the only breaking change |
oci_volume_backup_policy_assignment_facts | oci_blockstorage_volume_backup_policy_assignment_facts | Module name is the only breaking change |
oci_volume_backup_policy_facts | oci_blockstorage_volume_backup_policy_facts | Module name is the only breaking change |
oci_volume_facts | oci_blockstorage_volume_facts | Breaking changes:
|
oci_volume_group | oci_blockstorage_volume_group | Breaking changes:
|
oci_volume_group_backup | oci_blockstorage_volume_group_backup | Breaking changes:
|
oci_volume_group_facts | oci_blockstorage_volume_group_facts | Module name is the only breaking change |
oci_volume_group_facts | oci_blockstorage_volume_group_backup_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_app_catalog_listing_agreement | oci_compute_app_catalog_listing_resource_version_agreement_facts | Breaking changes:
|
oci_app_catalog_listing_facts | oci_compute_app_catalog_listing_facts | Module name is the only breaking change |
oci_app_catalog_listing_resource_version_facts | oci_compute_app_catalog_listing_resource_version_facts | Module name is the only breaking change |
oci_app_catalog_subscription | oci_compute_app_catalog_subscription | Module name is the only breaking change |
oci_app_catalog_subscription_facts | oci_compute_app_catalog_subscription_facts | Module name is the only breaking change |
oci_boot_volume_attachment | oci_compute_boot_volume_attachment | Breaking changes:
|
oci_boot_volume_attachment_facts | oci_compute_boot_volume_attachment_facts | Module name is the only breaking change |
oci_console_history | oci_compute_instance_console_history | Breaking changes:
|
oci_console_history_content_facts | oci_compute_instance_console_history_content_facts | Breaking changes:
|
oci_console_history_facts | oci_compute_instance_console_history_facts | Module name is the only breaking change |
oci_image | oci_compute_image | Breaking changes:
|
oci_image_actions | oci_compute_image_actions | Module name is the only breaking change |
oci_image_facts | oci_compute_image_facts | Module name is the only breaking change |
oci_instance | oci_compute_instance | Breaking changes:
|
oci_instance_console_connection | oci_compute_instance_console_connection | Breaking changes:
|
oci_instance_console_connection_facts | oci_compute_instance_console_connection_facts | Module name is the only breaking change |
oci_instance_credentials_facts | oci_compute_instance_credentials_facts | Module name is the only breaking change |
oci_instance_facts | oci_compute_instance_facts | Breaking changes:
|
oci_shape_facts | oci_compute_shape_facts | Module name is the only breaking change |
oci_vnic_attachment | oci_compute_vnic_attachment | Breaking changes:
|
oci_vnic_attachment_facts | oci_compute_vnic_attachment_facts | Module name is the only breaking change |
oci_volume_attachment | oci_compute_volume_attachment | Breaking changes:
|
oci_volume_attachment_facts | oci_compute_volume_attachment_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_instance_configuration | oci_compute_management_instance_configuration | Module name is the only breaking change |
oci_instance_configuration_facts | oci_compute_management_instance_configuration_facts | Module name is the only breaking change |
oci_instance_pool | oci_compute_management_instance_pool | Breaking changes:
|
oci_instance_pool_actions | oci_compute_management_instance_pool_actions | Module name is the only breaking change |
oci_instance_pool_facts | oci_compute_management_instance_pool_facts | Breaking changes:
|
oci_instance_pool_instances_facts | oci_compute_management_instance_pool_instance_facts | Breaking changes:
|
old name | new name | migration notes |
---|---|---|
oci_cluster | oci_container_engine_cluster | Breaking changes:
|
oci_cluster_facts | oci_container_engine_cluster_facts | Module name is the only breaking change |
oci_cluster_options_facts | oci_container_engine_cluster_options_facts | Module name is the only breaking change |
oci_kubeconfig | oci_container_engine_kubeconfig | Breaking changes:
|
oci_node_pool | oci_container_engine_node_pool | Breaking changes:
|
oci_node_pool_facts | oci_container_engine_node_pool_facts | Module name is the only breaking change |
oci_node_pool_options_facts | oci_container_engine_node_pool_options_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_database | oci_database_database | Breaking changes:
|
oci_database_facts | oci_database_database_facts | Module name is the only breaking change |
oci_backup | oci_database_backup | Breaking changes:
|
oci_backup_facts | oci_database_backup_facts | Breaking changes:
|
oci_data_guard_association | oci_database_data_guard_association | Breaking changes:
|
oci_data_guard_association_facts | oci_database_data_guard_association_facts | Module name is the only breaking change |
oci_db_home | oci_database_db_home | Breaking changes:
|
oci_db_home_facts | oci_database_db_home_facts | Module name is the only breaking change |
oci_db_home_patch_facts | oci_database_db_home_patch_facts | Module name is the only breaking change |
oci_db_home_patch_history_entry_facts | oci_database_db_home_patch_history_entry_facts | Module name is the only breaking change |
oci_db_node | oci_database_db_node_actions | Breaking changes:
|
oci_db_node_facts | oci_database_db_node_facts | Module name is the only breaking change |
oci_db_system | oci_database_db_system | Breaking changes:
|
oci_db_system_facts | oci_database_db_system_facts | Module name is the only breaking change |
oci_db_system_patch_facts | oci_database_db_system_patch_facts | Module name is the only breaking change |
oci_db_system_patch_history_entry_facts | oci_database_db_system_patch_history_entry_facts | Module name is the only breaking change |
oci_db_system_shape_facts | oci_database_db_system_shape_facts | Module name is the only breaking change |
oci_db_version_facts | oci_database_db_version_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_autonomous_data_warehouse | deprecated | This module is deprecated. You should use oci_database_autonomous_database with the warehouse workload type.(db_workload : DW ) |
oci_autonomous_data_warehouse_backup | deprecated | This module is deprecated. You should use oci_database_autonomous_database_backup instead. |
oci_autonomous_data_warehouse_backup_facts | deprecated | This module is deprecated. You should use oci_database_autonomous_database_backup_facts instead. |
oci_autonomous_data_warehouse_facts | deprecated | This module is deprecated. You should use oci_database_autonomous_database_facts with DW as the workload type.(db_workload : DW ) |
oci_autonomous_database | oci_database_autonomous_database | breaking changes:
|
oci_autonomous_database_backup | oci_database_autonomous_database_backup | Module name is the only breaking change |
oci_autonomous_database_backup_facts | oci_database_autonomous_database_backup_facts | Module name is the only breaking change |
oci_autonomous_database_facts | oci_database_autonomous_database_facts | Module name is the only breaking change |
oci_autonomous_exadata_infrastructure | oci_database_autonomous_exadata_infrastructure | Breaking changes due to service API change:
|
oci_autonomous_exadata_infrastructure_facts | oci_database_autonomous_exadata_infrastructure_facts | Breaking changes due to service API change:
|
oci_autonomous_exadata_infrastructure_shape_facts | oci_database_autonomous_exadata_infrastructure_shape_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_sender | oci_email_sender | Module name is the only breaking change |
oci_sender_facts | oci_email_sender_facts | Module name is the only breaking change |
oci_suppression | oci_email_suppression | Module name is the only breaking change |
oci_suppression_facts | oci_email_suppression_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_export | oci_file_storage_export | Breaking changes:
|
oci_export_facts | oci_file_storage_export_facts | Module name is the only breaking change |
oci_export_set | oci_file_storage_export_set | Module name is the only breaking change |
oci_export_set_facts | oci_file_storage_export_set_facts | Module name is the only breaking change |
oci_file_system | oci_file_storage_file_system | Module name is the only breaking change |
oci_file_system_facts | oci_file_storage_file_system_facts | Module name is the only breaking change |
oci_mount_target | oci_file_storage_mount_target | Module name is the only breaking change |
oci_mount_target_facts | oci_file_storage_mount_target_facts | Module name is the only breaking change |
oci_snapshot | oci_file_storage_snapshot | Module name is the only breaking change |
oci_snapshot_facts | oci_file_storage_snapshot_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_ad_facts | oci_identity_availability_domain_facts | Breaking changes:
|
oci_api_key | oci_identity_api_key | Breaking changes:
|
oci_api_key_facts | oci_identity_api_key_facts | Breaking changes:
|
oci_auth_token | oci_identity_auth_token | Module name is the only breaking change |
oci_auth_token_facts | oci_identity_auth_token_facts | Module name is the only breaking change |
oci_compartment | oci_identity_compartment | Breaking changes:
|
oci_compartment_facts | oci_identity_compartment_facts | Breaking changes:
|
oci_cost_tracking_tag_facts | oci_identity_cost_tracking_tag_facts | Breaking changes:
|
oci_customer_secret_key | oci_identity_customer_secret_key | Module name is the only breaking change |
oci_customer_secret_key | oci_identity_customer_secret_key_facts | Breaking changes:
|
oci_dynamic_group | oci_identity_dynamic_group | Module name is the only breaking change |
oci_dynamic_group_facts | oci_identity_dynamic_group_facts | Module name is the only breaking change |
oci_fault_domain_facts | oci_identity_fault_domain_facts | Module name is the only breaking change |
oci_group | oci_identity_group | Breaking changes:
|
oci_group_facts | oci_identity_group_facts | Breaking changes:
|
oci_identity_identity_provider_actions | oci_identity_provider_actions | Module name is the only breaking change |
oci_identity_provider | oci_identity_provider | Breaking changes:
|
oci_identity_provider_facts | oci_identity_provider_facts | Breaking changes:
|
oci_identity_tag_default | oci_identity_tag_default | Module name is the only breaking change |
oci_identity_tag_default_facts | oci_identity_tag_default_facts | Module name is the only breaking change |
oci_idp_group_mapping | oci_identity_idp_group_mapping | Module name is the only breaking change |
oci_idp_group_mapping_facts | oci_identity_idp_group_mapping_facts | Module name is the only breaking change |
oci_policy | oci_identity_policy | Breaking changes:
|
oci_policy_facts | oci_identity_policy_facts | Module name is the only breaking change |
oci_region_facts | oci_identity_region_facts | Module name is the only breaking change |
oci_region_subscription_facts | oci_identity_region_subscription_facts | Breaking changes:
|
oci_smtp_credential | oci_identity_smtp_credential | Module name is the only breaking change |
oci_smtp_credential_facts | oci_identity_smtp_credential_facts | Module name is the only breaking change |
oci_tag | oci_identity_tag | Breaking changes:
|
oci_tag_facts | oci_identity_tag_facts | Breaking changes:
|
oci_tag_namespace | oci_identity_tag_namespace | Breaking changes:
|
oci_tag_namespace_facts | oci_identity_tag_namespace_facts | Module name is the only breaking change |
oci_tenancy_facts | oci_identity_tenancy_facts | Module name is the only breaking change |
oci_user | oci_identity_user | Breaking changes:
|
old name | new name | migration notes |
---|---|---|
oci_load_balancer | oci_loadbalancer_load_balancer | Breaking changes:
|
oci_load_balancer_health_facts | oci_loadbalancer_health_facts | Breaking changes:
|
oci_load_balancer_backend | oci_loadbalancer_backend | Module name is the only breaking change |
oci_load_balancer_backend_facts | oci_loadbalancer_backend_facts | Breaking changes:
|
oci_load_balancer_backend_health_facts | oci_loadbalancer_backend_health_facts | Breaking changes:
|
oci_load_balancer_backend_set | oci_loadbalancer_backend_set | Breaking changes:
|
oci_load_balancer_backend_set_facts | oci_loadbalancer_backend_set_facts | Module name is the only breaking change |
oci_load_balancer_backend_set_health_facts | oci_loadbalancer_backend_set_health_facts | Breaking changes:
|
oci_load_balancer_certificate | oci_loadbalancer_certificate | Breaking changes:
|
oci_load_balancer_certificate_facts | oci_loadbalancer_certificate_facts | Module name is the only breaking change |
oci_load_balancer_health_checker | oci_loadbalancer_health_checker | Module name is the only breaking change |
oci_load_balancer_health_checker_facts | oci_loadbalancer_health_checker_facts | Breaking changes:
|
oci_load_balancer_health_facts | oci_loadbalancer_health_facts | Breaking changes:
|
oci_load_balancer_health_summary_facts | oci_loadbalancer_health_facts | Breaking changes:
|
oci_load_balancer_hostname | oci_loadbalancer_hostname | Module name is the only breaking change |
oci_load_balancer_hostname_facts | oci_loadbalancer_hostname_facts | Module name is the only breaking change |
oci_load_balancer_listener | oci_loadbalancer_listener | Breaking changes:
|
oci_load_balancer_listener_facts | deprecated | This module is deprecated, you should use oci_load_balancer_facts.result.listeners to access listener information |
oci_load_balancer_path_route_set | oci_loadbalancer_path_route_set | Breaking changes:
|
oci_load_balancer_path_route_set_facts | oci_loadbalancer_path_route_set_facts | Module name is the only breaking change |
oci_load_balancer_policy_facts | oci_loadbalancer_policy_facts | Module name is the only breaking change |
oci_load_balancer_protocol_facts | oci_loadbalancer_protocol_facts | Module name is the only breaking change |
oci_load_balancer_shape_facts | oci_loadbalancer_shape_facts | Module name is the only breaking change |
oci_load_balancer_work_request_facts | deprecated |
old name | new name | migration notes |
---|---|---|
oci_cpe | oci_network_cpe | Module name is the only breaking change |
oci_cpe_facts | oci_network_cpe_facts | Module name is the only breaking change |
oci_cross_connect | oci_network_cross_connect | Module name is the only breaking change |
oci_cross_connect_facts | oci_network_cross_connect_facts | Module name is the only breaking change
|
oci_cross_connect_group | oci_network_cross_connect_group | Module name is the only breaking change |
oci_cross_connect_group_facts | oci_network_cross_connect_group_facts | Module name is the only breaking change
|
oci_cross_connect_location_facts | oci_network_cross_connect_location_facts | Module name is the only breaking change |
oci_cross_connect_port_speed_shape_facts | oci_network_cross_connect_port_speed_shape_facts | Module name is the only breaking change |
oci_cross_connect_status_facts | oci_network_cross_connect_status_facts | Breaking changes:
|
oci_dhcp_options | oci_network_dhcp_options | Breaking changes:
|
oci_dhcp_options_facts | oci_network_dhcp_options_facts | Breaking changes:
|
oci_drg | oci_network_drg | Module name is the only breaking change |
oci_drg_attachment | oci_network_drg_attachment | Module name is the only breaking change |
oci_drg_attachment_facts | oci_network_drg_attachment_facts | Module name is the only breaking change |
oci_drg_facts | oci_network_drg_facts | Module name is the only breaking change |
oci_fast_connect_provider_service_facts | oci_network_fast_connect_provider_service_facts | Module name is the only breaking change |
oci_fast_connect_provider_virtual_circuit_bandwidth_shape_facts | oci_network_fast_connect_provider_service_virtual_circuit_bandwidth_shape_facts | Breaking changes:
|
oci_internet_gateway | oci_network_internet_gateway | Breaking changes:
|
oci_internet_gateway_facts | oci_network_internet_gateway_facts | Module name is the only breaking change |
oci_ip_sec_connection | oci_network_ip_sec_connection | Module name is the only breaking change |
oci_ip_sec_connection_device_config_facts | oci_network_ip_sec_connection_device_config_facts | Module name is the only breaking change |
oci_ip_sec_connection_device_status_facts | oci_network_ip_sec_connection_device_status_facts | Module name is the only breaking change |
oci_ip_sec_connection_facts | oci_network_ip_sec_connection_facts | Module name is the only breaking change |
oci_letter_of_authority_facts | oci_network_letter_of_authority_facts | Breaking changes:
|
oci_local_peering_gateway | oci_network_local_peering_gateway | Breaking changes:
|
oci_local_peering_gateway_facts | oci_network_local_peering_gateway_facts | Module name is the only breaking change |
oci_nat_gateway | oci_network_nat_gateway | Module name is the only breaking change |
oci_nat_gateway_facts | oci_network_nat_gateway_facts | Module name is the only breaking change |
oci_network_security_group | oci_network_security_group | Module name is the only breaking change |
oci_network_security_group_facts | oci_network_security_group_facts | Module name is the only breaking change |
oci_peer_region_for_remote_peering_facts | oci_network_peer_region_for_remote_peering_facts | Breaking changes:
|
oci_private_ip | oci_network_private_ip | Module name is the only breaking change |
oci_private_ip_facts | oci_network_private_ip_facts | Module name is the only breaking change |
oci_public_ip | oci_network_public_ip | Breaking changes:
|
oci_public_ip_facts | oci_network_public_ip_facts | Module name is the only breaking change |
oci_remote_peering_connection | oci_network_remote_peering_connection | Breaking changes:
|
oci_remote_peering_connection_facts | oci_network_remote_peering_connection_facts | Module name is the only breaking change |
oci_route_table | oci_network_route_table | Breaking changes:
|
oci_route_table_facts | oci_network_route_table_facts | Module name is the only breaking change |
oci_security_list | oci_network_security_list | Module name is the only breaking change |
oci_security_list_facts | oci_network_security_list_facts | Module name is the only breaking change |
oci_security_rule_actions | oci_network_security_rule_actions | Module name is the only breaking change |
oci_security_rule_facts | oci_network_security_rule_facts | Module name is the only breaking change |
oci_service_facts | oci_network_service_facts | Module name is the only breaking change |
oci_service_gateway | oci_network_service_gateway | Module name is the only breaking change |
oci_service_gateway_facts | oci_network_service_gateway_facts | Module name is the only breaking change |
oci_subnet | oci_network_subnet | Module name is the only breaking change |
oci_subnet_facts | oci_network_subnet_facts | Module name is the only breaking change |
oci_vcn | oci_network_vcn | Module name is the only breaking change |
oci_vcn_facts | oci_network_vcn_facts | Module name is the only breaking change |
oci_virtual_circuit | oci_network_virtual_circuit | Breaking changes:
|
oci_virtual_circuit_bandwidth_shape_facts | oci_network_virtual_circuit_bandwidth_shape_facts | Module name is the only breaking change |
oci_virtual_circuit_facts | oci_network_virtual_circuit_facts | Module name is the only breaking change |
oci_virtual_circuit_public_prefix_facts | oci_network_virtual_circuit_public_prefix_facts | Module name is the only breaking change |
oci_vnic | oci_network_vnic | Module name is the only breaking change |
oci_vnic_facts | oci_network_vnic_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_bucket | oci_object_storage_bucket | Breaking changes:
|
oci_bucket_facts | oci_object_storage_bucket_facts | Breaking changes:
|
oci_namespace_facts | oci_object_storage_namespace_facts | Breaking changes:
|
oci_namespace_metadata_facts | oci_object_storage_namespace_metadata_facts | Breaking changes:
|
oci_object | oci_object_storage_object | Breaking changes:
|
oci_object_facts | oci_object_storage_object_facts | Breaking changes:
|
oci_object_storage_bucket_actions | oci_object_storage_bucket_actions | Breaking changes:
|
oci_object_storage_object_lifecycle_policy | oci_object_storage_object_lifecycle_policy | Module name is the only breaking change |
oci_object_storage_object_lifecycle_policy_facts | oci_object_storage_object_lifecycle_policy_facts | Module name is the only breaking change |
oci_preauthenticated_request | oci_object_storage_preauthenticated_request | Breaking changes:
|
oci_preauthenticated_request_facts | oci_object_storage_preauthenticated_request_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_zone | oci_dns_zone | Breaking changes:
|
oci_zone_facts | oci_dns_zone_facts | Module name is the only breaking change |
oci_zone_records | oci_dns_zone_records | Module name is the only breaking change |
oci_zone_records_facts | oci_dns_zone_records_facts | Module name is the only breaking change |
oci_domain_records | oci_dns_domain_records | Module name is the only breaking change |
oci_domain_records_facts | oci_dns_domain_records_facts | Module name is the only breaking change |
oci_rrset | oci_dns_rrset | Module name is the only breaking change |
oci_rrset_facts | oci_dns_rrset_facts | Module name is the only breaking change |
old name | new name | migration notes |
---|---|---|
oci_waas_policy | oci_waas_policy | No breaking changes |
oci_waas_policy_facts | oci_waas_policy_facts | No breaking changes |
oci_waas_certificate | oci_waas_certificate | No breaking changes |
oci_waas_certificate_facts | oci_waas_certificate_facts | No breaking changes |
oci_waas_recommendation_facts | oci_waas_recommendation_facts | No breaking changes |
oci_waas_edge_subnet_facts | oci_waas_edge_subnet_facts | No breaking changes |
oci_waas_work_request | deprecated | |
oci_waas_work_request_facts | deprecated |
old name | new name | migration notes |
---|---|---|
oci_resource_type_facts | oci_resource_search_resource_type_facts | Module name is the only breaking change |
oci_search_resources_facts | oci_resource_search_resource_facts | Breaking changes:
|