Skip to content

Commit 368d109

Browse files
Create opsless_system/variables.tf
1 parent c92ec61 commit 368d109

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

opsless_system/variables.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
variable "project_id" {
2+
type = string
3+
description = "The GCP project ID where resources will be created."
4+
}
5+
6+
variable "region" {
7+
type = string
8+
description = "The region in which to create the bucket (e.g., 'us-central1')."
9+
default = "us-central1"
10+
}
11+
12+
variable "bucket_name" {
13+
type = string
14+
description = "Name of the GCS bucket to store Terraform state."
15+
}

0 commit comments

Comments
 (0)