aboutsummaryrefslogtreecommitdiffstats
path: root/terraform/variables.tf
diff options
context:
space:
mode:
authorColin Wilk <colin.wilk@tum.de>2023-06-01 19:12:30 +0200
committerColin Wilk <colin.wilk@tum.de>2023-06-01 19:12:30 +0200
commit1ff00c5658839a640bae5831103b02b513c224f5 (patch)
tree90776d158ebb49a4680d7c9477ccb5afd641afa6 /terraform/variables.tf
parentce047c36fe9137fd222f7ae9dc498434794558f1 (diff)
downloadterraform-github-1ff00c5658839a640bae5831103b02b513c224f5.tar.gz
terraform-github-1ff00c5658839a640bae5831103b02b513c224f5.zip
Move terraform config into own subdirectory
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
Diffstat (limited to 'terraform/variables.tf')
-rw-r--r--terraform/variables.tf11
1 files changed, 11 insertions, 0 deletions
diff --git a/terraform/variables.tf b/terraform/variables.tf
new file mode 100644
index 0000000..4b6c01a
--- /dev/null
+++ b/terraform/variables.tf
@@ -0,0 +1,11 @@
+variable "github_token" {
+ description = "GITHUB_TOKEN"
+ type = string
+ sensitive = true
+}
+
+variable "galaxy_api_key" {
+ description = "Ansible Galaxy api key"
+ type = string
+ sensitive = true
+}