OCI-Ansible 模块 --check Dry 选项在身份验证时失败
OCI-Ansible Module --check Dry option is failed at authentication
我想知道是否有办法为 Oracle 云基础设施模块执行 ansible --check dry 运行。
示例:在更新现有 VCN 子网的 DHCP 选项之前执行干燥 运行
新的 ansible collections modules 支持 check_mode 在实际执行操作之前先执行干 运行。
例如,更新现有 VCN 子网的 DHCP 选项,您可以使用以下任务执行 dry-run:
- name: Update subnet
oci_network_subnet:
defined_tags: {'Operations': {'CostCenter': 'US'}}
dhcp_options_id: ocid1.dhcpoptions.oc1.phx.unique_ID
subnet_id: ocid1.subnet.oc1..xxxxxxEXAMPLExxxxxx
check_mode: yes
我想知道是否有办法为 Oracle 云基础设施模块执行 ansible --check dry 运行。
示例:在更新现有 VCN 子网的 DHCP 选项之前执行干燥 运行
新的 ansible collections modules 支持 check_mode 在实际执行操作之前先执行干 运行。 例如,更新现有 VCN 子网的 DHCP 选项,您可以使用以下任务执行 dry-run:
- name: Update subnet
oci_network_subnet:
defined_tags: {'Operations': {'CostCenter': 'US'}}
dhcp_options_id: ocid1.dhcpoptions.oc1.phx.unique_ID
subnet_id: ocid1.subnet.oc1..xxxxxxEXAMPLExxxxxx
check_mode: yes