diff options
Diffstat (limited to 'variables.tf')
| -rw-r--r-- | variables.tf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/variables.tf b/variables.tf new file mode 100644 index 0000000..4b6c01a --- /dev/null +++ b/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 +} |