Skip to content
Snippets Groups Projects
Commit 40c7bf10 authored by František Dvořák's avatar František Dvořák
Browse files

Bioportal: access OpenStack using token

parent 254b5e09
No related branches found
No related tags found
No related merge requests found
provider "openstack" { provider "openstack" {
token = var.token
auth_url = "https://identity.cloud.muni.cz/v3"
region = "brno1"
allow_reauth = false
} }
terraform { terraform {
......
...@@ -98,6 +98,11 @@ variable "ssh" { ...@@ -98,6 +98,11 @@ variable "ssh" {
default = "openstack" default = "openstack"
} }
variable "token" {
description = "OpenStack token"
default = null
}
variable "volumes" { variable "volumes" {
description = "Number of data volumes per node (zero means system disk)" description = "Number of data volumes per node (zero means system disk)"
default = 2 default = 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment