Adding support for azure and create a resource group

Signed-off-by: Sujay Pillai <sujayopillai@gmail.com>
This commit is contained in:
Sujay Pillai
2021-08-11 01:20:16 +08:00
parent eadd075254
commit 5908aa628e
10 changed files with 208 additions and 0 deletions

View File

@@ -0,0 +1 @@
module: ""

View File

@@ -0,0 +1,2 @@
# dagger universe
alpha.dagger.io

View File

@@ -0,0 +1,17 @@
package rg
import (
"alpha.dagger.io/azure"
"alpha.dagger.io/azure/resourcegroup"
"alpha.dagger.io/random"
)
suffix: random.#String & {
seed: "azrg"
}
rg: resourcegroup.#ResourceGroup & {
config: azure.#Config
rgName: "rg-test-\(suffix.out)"
rgLocation: "eastus2"
}