diff options
| author | Colin Wilk <colin.wilk@tum.de> | 2023-06-01 19:12:30 +0200 |
|---|---|---|
| committer | Colin Wilk <colin.wilk@tum.de> | 2023-06-01 19:12:30 +0200 |
| commit | 1ff00c5658839a640bae5831103b02b513c224f5 (patch) | |
| tree | 90776d158ebb49a4680d7c9477ccb5afd641afa6 /terraform/variables.tf | |
| parent | ce047c36fe9137fd222f7ae9dc498434794558f1 (diff) | |
| download | terraform-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.tf | 11 |
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 +} |