Skip to content

Commit 4b66e13

Browse files
docs: finalize v1.1 remote state + add lifecycle
1 parent f32a2d2 commit 4b66e13

4 files changed

Lines changed: 52 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,17 @@ Evidence includes:
6363

6464
---
6565

66+
## Lifecycle
67+
68+
✅ Validated remote state + locking
69+
✅ Workload resources destroyed (cost control)
70+
✅ Backend resources destroyed after evidence capture
71+
72+
---
73+
6674
## Status
6775

6876
**v1.1 — Remote Terraform State (Azure Backend)**
6977
Status: ✅ Completed
7078

71-
---
79+
---

infra/workload/01-local-state/.terraform.lock.hcl

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
terraform {
2+
backend "azurerm" {
3+
resource_group_name = "rg-tfstate-runbook"
4+
storage_account_name = "sttfstate260221me01"
5+
container_name = "tfstate"
6+
key = "runbook.tfstate"
7+
}
8+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
terraform {
2+
required_version = ">= 1.6"
3+
required_providers {
4+
azurerm = {
5+
source = "hashicorp/azurerm"
6+
version = "~> 3.0"
7+
}
8+
}
9+
}
10+
11+
provider "azurerm" {
12+
features {}
13+
}

0 commit comments

Comments
 (0)