Guest User

Untitled

a guest
Aug 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. resource "azurerm_resource_group" "main" {
  2. name = "cardinal-rg"
  3. location = "centralus"
  4. }
  5.  
  6. resource "azurerm_management_lock" "resource-group-level" {
  7. name = "resource-group-level"
  8. scope = "${azurerm_resource_group.main.id}"
  9. lock_level = "ReadOnly"
  10. notes = "This Resource Group is Read-Only"
  11. }
Add Comment
Please, Sign In to add comment