CLI-driven Workflow
Configuration
terraform {
backend "remote" {
hostname = "terrakube-api.example.com"
organization = "simple"
workspaces {
name = "workspace1"
}
}
}
resource "random_string" "random" {
length = 16
special = true
override_special = "/@Β£$"
}terraform {
cloud {
organization = "simple"
hostname = "terrakube-api.example.com"
workspaces {
name = "samplecloud"
}
}
}
resource "random_string" "random" {
length = 16
special = true
override_special = "/@Β£$"
}Terraform login.

Terraform Init
Implicit Workspace Creation
Terraform Plan

Terraform Apply


Last updated
Was this helpful?