Skip to content

Commit c29efb2

Browse files
feat: create a major release v1.0.0 (#28)
1 parent 480f48a commit c29efb2

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.spacelift/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: 2
2-
module_version: "0.0.6"
2+
module_version: "1.0.0"
33

44
tests:
55
- name: Test infrastructure creation

examples/simple/main.tf

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,17 @@ provider "azurerm" {
2020
subscription_id = var.subscription_id
2121
}
2222

23+
resource "random_string" "seed" {
24+
length = 4
25+
special = false
26+
upper = false
27+
}
28+
29+
2330
module "spacelift" {
2431
source = "../.."
2532

2633
app_domain = "spacelift.example.com"
2734
location = "westeurope"
28-
resource_group_name = "self-hosted-v3-tf-testing"
35+
resource_group_name = "self-hosted-v3-tf-testing-${random_string.seed.result}"
2936
}

0 commit comments

Comments
 (0)