We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 480f48a commit c29efb2Copy full SHA for c29efb2
2 files changed
.spacelift/config.yml
@@ -1,5 +1,5 @@
1
version: 2
2
-module_version: "0.0.6"
+module_version: "1.0.0"
3
4
tests:
5
- name: Test infrastructure creation
examples/simple/main.tf
@@ -20,10 +20,17 @@ provider "azurerm" {
20
subscription_id = var.subscription_id
21
}
22
23
+resource "random_string" "seed" {
24
+ length = 4
25
+ special = false
26
+ upper = false
27
+}
28
+
29
30
module "spacelift" {
31
source = "../.."
32
33
app_domain = "spacelift.example.com"
34
location = "westeurope"
- resource_group_name = "self-hosted-v3-tf-testing"
35
+ resource_group_name = "self-hosted-v3-tf-testing-${random_string.seed.result}"
36
0 commit comments