Skip to content

Instantly share code, notes, and snippets.

@zseta
Created November 29, 2023 13:31
Show Gist options
  • Save zseta/35f82805af8abdf868453e77f023f297 to your computer and use it in GitHub Desktop.
Save zseta/35f82805af8abdf868453e77f023f297 to your computer and use it in GitHub Desktop.
# ScyllaDB Cloud API token
variable "scylla_cloud_token" {
description = "ScyllaDB Cloud API token"
type = string
default = "ADD-YOUR-API-TOKEN-HERE"
}
# ScyllaDB Cloud region
variable "scylla_cloud_region" {
description = "ScyllaDB Cloud region of the cluster"
type = string
default = "eu-north-1"
}
# SSH private key for EC2 instance access
variable "ssh_private_key" {
description = "SSH private key location for EC2 instance access"
type = string
default = "/home/user/Documents/your-private-key.pem"
}
variable "aws_key_pair" {
description = "Key pair name in AWS"
type = string
default = "my-key-pair"
}
# AWS credentials file
variable "aws_creds" {
description = "AWS credentials location"
type = string
default = "/home/user/.aws/credentials"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment