Skip to content

Commit

Permalink
Create Timescale Cloud main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
kjlippold authored Feb 15, 2024
1 parent 4f273c9 commit 438cb82
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions terraform/timescale/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
terraform {
required_providers {
timescale = {
source = "timescale/timescale"
version = "~> 1.1.0"
}
}
required_version = ">= 1.2.0"
}

provider "timescale" {
project_id = var.ts_project_id
access_key = var.ts_access_key
secret_key = var.ts_secret_key
}

variable "instance" {}

0 comments on commit 438cb82

Please sign in to comment.