github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/scripts/testing-setup/variables.tf (about)

     1  variable "AWS_REGION" {
     2    default = "eu-west-1"
     3  }
     4  
     5  variable "PATH_TO_PRIVATE_KEY" {
     6    default = "~/.ssh/id_rsa"
     7  }
     8  variable "PATH_TO_PUBLIC_KEY" {
     9    default = "~/.ssh/id_rsa.pub"
    10  }
    11  variable "AWS_CREDENTIALS_FILE" {
    12    default = "~/.aws/credentials"
    13  }
    14  
    15  variable "AMIS" {
    16    type = map(string)
    17    default = {
    18      eu-west-1 = "ami-05618744ec24af4f8"
    19    }
    20  }
    21  
    22  variable "INSTANCE_USERNAME" {
    23    default = "ubuntu"
    24  }
    25  
    26  variable "NUMBER_OF_NODES" {
    27    default = 3
    28  }