mops 0.1.1

Mmmm.... a bit like sops but in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
terraform {
  required_providers {
    azurerm = {
      source = "hashicorp/azurerm"
      version = "3.62.1"
    }
  }
}

provider "azurerm" {
  features {}
}

resource "azurerm_resource_group" "ci" {
  name     = "ci"
  location = "UK South"
}