Creating your Terraform script file (main.tf) and initializing Terraform

######################### PROVIDERs ############################
terraform {
required_providers {
btp = {
source = "sap/btp"
version = "0.6.0-beta2"
}
cloudfoundry = {
source = "cloudfoundry-community/cloudfoundry"
version = "0.51.3"
}
}
}
######################### Variables ############################
variable "admin_user" {}
variable "admin_password" {
description = "BTP administrator password"
type = string
sensitive = true
}
variable "globalaccount_subdomain" {}
Command: Initialize Terraform
PreviousEnsuring your installation is correct by checking the versions of BTP and TerraformNextConfiguring your BTP Subaccount and adding the first user with the Subaccount Viewer Role
Last updated