微软Azure云 LAB 101: 使用Azure自动化作业定期执行特定任务的实验

Posted Posted in Azure, Playbook, 云计算, 自动化

承接上一篇文章《微软Azure云 LAB 101:Azure PS发送RestAPI请求并将其作为自动化作业》的思路,如果换个角度使用Azure自动化(Azure automation)这个功能,效率是否会更好呢?

为此,作为一个初学者,我对Azure自动化(Azure automation)进行了初步研究学习。以下是使用“Azure automation schedule job”执行特定任务的实验和结果,希望可以帮助到大家打开新的玩法并了解更多Azure其他产品的知识。

[本文为AndyX.Net原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明!]

….[阅读全文]

微软Azure云 LAB 101:Azure PS发送RestAPI请求并将其作为自动化作业[中英双语]

Posted Posted in Azure, Playbook, 云计算, 自动化

您是否遇到过尝试使用Azure服务主体对象和PowerShell脚本进行自动化作业的问题?
Have you ever encountered an issue where is trying to use service principle and PowerShell script for automation job?

在这里,我将在下面提供关于如何实现这一点的详细指南,在这个例子中,我将向您展示如何禁用特定功能(defender pricing plan)。您也可以将其用于其他的RestAPI请求。
Here I am going to provide the detailed guide below about how to achieve this, and in the example, I am going to show you how to disable defender pricing plan for all your resources. But you can always use it for other Rest API request.

[本文为AndyX.Net原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明!]

….[阅读全文]

详谈Ansible的工作原理以及优势/使用Ansible实现网络自动化批量部署应用的实例

Posted Posted in Ansible, Playbook, 自动化, 运维

Ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。

Ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架。这是一个无代理的、可扩展的配置管理系统。

….[阅读全文]