Skip to content

Commit ac2c4c9

Browse files
authored
feat: add another demo module null/random (#4)
- Introduced a new demo module for testing purposes. - This module will be used for random functionality testing.
1 parent 4618777 commit ac2c4c9

File tree

5 files changed

+19
-0
lines changed

5 files changed

+19
-0
lines changed

null/random/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Null Random Sample Terraform module
2+
3+
Returns a random string
4+
5+
This is a demo Terraform module.

null/random/main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
resource "random_string" "random" {
2+
length = 16
3+
special = true
4+
override_special = "/@£$"
5+
}

null/random/outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
output "random_string" {
2+
description = "Random string value"
3+
value = random_string.random.result
4+
}

null/random/variables.tf

Whitespace-only changes.

null/random/versions.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
terraform {
2+
required_version = ">= 1.0"
3+
4+
required_providers {}
5+
}

0 commit comments

Comments
 (0)