Skip to content

Commit

Permalink
feat: random null resource (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenmartius authored Mar 19, 2024
2 parents 4759f46 + eed378a commit c3b91ee
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
11 changes: 11 additions & 0 deletions stacks/some-random-stack/_backend.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// TERRAMATE: GENERATED AUTOMATICALLY DO NOT EDIT

terraform {
backend "s3" {
bucket = "terramate-example-terraform-state-backend"
dynamodb_table = "terraform-lock"
encrypt = true
key = "terraform/stacks/by-id/e8705946-a859-4435-b256-f48353408bbf/terraform.tfstate"
region = "us-east-1"
}
}
16 changes: 16 additions & 0 deletions stacks/some-random-stack/_terraform.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// TERRAMATE: GENERATED AUTOMATICALLY DO NOT EDIT

terraform {
required_version = "1.7.1"
}
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.31"
}
}
}
provider "aws" {
region = "us-east-1"
}
2 changes: 2 additions & 0 deletions stacks/some-random-stack/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
resource "null_resource" "example" {
}
5 changes: 5 additions & 0 deletions stacks/some-random-stack/stack.tm.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
stack {
name = "some-random-stack"
description = "some-random-stack"
id = "e8705946-a859-4435-b256-f48353408bbf"
}

0 comments on commit c3b91ee

Please sign in to comment.