![]() |
| AZ-900 : Resource Group |
This is an excellent explanation about what is resource group in Azure within 6 min by John.
My notes:
- Subscription-ID
- Resource Group
- VM, OS, Disk, Public-IP
- VNIC, VNET and subnet, NSG, ip-config
Links:
Here're the 8 tips I copied from Rapid7 for "emergency field security" that any defenders can take immediately.
Given the urgency, many information security teams find themselves scrambling to prioritize mitigation actions and protect their networks. Some may not have time to make their networks less flat, patch all the vulnerabilities, set up a backup plan, encrypt all the data at rest, and practice a incident response scenarios before disaster strikes.
With essential security, it helps identifying urgent steps to take right now.
Links
YAML stands for “YAML Ain’t markup language” is a data serialization language which is designed to be human -friendly and works well with other programming languages for everyday tasks.
Features:
Links:
This is a simple note to show how to access GitHub Secrets with Python.
First, to add a new secret, go to GitHub repository > Settings > Secrets > New Repository Secret.
Second, define a Name ('SEC_NAME') and put in the Value.
Next, map them as environment variables in GitHub Actions Workflow.
....
- name: Run tests
env:
API_KEY: ${{ secrets.SEC_NAME }}
run: |
....
Finally, refer to the env variable in Python script.
import os
API_KEY = os.environ['API_KEY']
....
Just upgraded to Ubuntu 22.04 today.
As a Jumpstart, I just search for some cheatsheets like, things to do after installing Ubuntu. And I also found a very good article for introducing basic terminal tips.
Overall, Ubuntu 22.04 is simple and sweet. 🤟
Links: