<aside> 🔖 권한
Active Directory: 인증
</aside>
<aside> 💡 Azure Active Directory의 user와 group 추가
도메인 가입해서 active directory 쓰기
설정 → Accounts → Access work or school
</aside>
<aside> 💡 2장: Administer Governance and Compliance
</aside>
<aside> ⚙ 실습복습
LAB01a Azure AD
User account가 만들어져있어야 가능
접속을 했으면 각 계정에 Permission을 줘야함
admin관리자가 AD, Resource group을 다 만들고 관리
<aside> 📌 정리
AAD (User, group 관리자(add role → admin: global adminstartor)) → Portal 접속 (권한위임: 구독(Subscription: Owner[대상: admin] | 대상[Resource group])
</aside>
<aside> 💻 실습
</aside>
Lab2b - Manage Governance via Azure Policy
bash & powershell
# bash **Resource group 확인**
az group list -o table
## 생성
az group create -n pangyoRG -l eastus
## 삭제
az group delete -n pangyoRG
**# subscription 확인**
az account list -o table
# azure powershell
get-module
get-module -listavailable
import-module -name powershellget
get-command -module powershellget
install-module -name az -AllowClobber
</aside>
<aside> 💡 Configure Azure Resources with Tools
Compare Administrator tools
Azure Portal
Azure Cloud Shell: 웹에서 명령어 입력 가능
→ Authenticates automatically: 권한 자동인증
Azure PowerShell and CLI
# CLI
az vm restart -g
MyResourceGroup -n MyVm
Dashboard
New dashboard , edit, export(파일로 저장), clone
</aside>