Created
November 29, 2023 13:31
-
-
Save zseta/35f82805af8abdf868453e77f023f297 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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