Besom - a broom made of twigs tied around a stick. Brooms and besoms are used for protection, to ward off evil spirits, and cleansing of ritual spaces. Also, Besom is Scala SDK that allows you to write Pulumi programs in Scala, incidentally.
Besom Scala SDK for Pulumi lets you leverage the full power of Pulumi Infrastructure as Code Platform using the Scala programming language. Scala support is currently in Public Beta.
Pulumi is a registered trademark of Pulumi Corporation.
Get Started with Besom: Deploy a simple application in AWS, Azure, Google Cloud or Kubernetes using Besom to describe the desired infrastructure using Scala.
Besom Docs: Learn about Besom concepts, follow user-guides, and consult the reference documentation.
Examples: Browse Scala examples across many clouds and scenarios including containers, serverless, and infrastructure.
Install Pulumi CLI:
To install the latest Pulumi release, run the following (see full installation instructions for additional installation options):
curl -fsSL https://get.pulumi.com/ | sh
Install Scala CLI:
To install the latest Scala CLI release, run the following (see installation instructions for additional installation options):
curl -sSLf https://scala-cli.virtuslab.org/get | sh
Install Scala Language Plugin in Pulumi:
To install the latest Scala Language Plugin release, run the following:
pulumi plugin install language scala 0.3.2 --server github://api.github.com/VirtusLab/besom
Create a new project:
You can start writing your Besom code at this point, but to help you set up Besom comes with Pulumi templates.
You can get started with the pulumi new
command:
mkdir besom-demo && cd besom-demo
pulumi new https://github.com/VirtusLab/besom/tree/v0.3.2/templates/aws
Deploy to the Cloud:
Run pulumi up
to get your code to the cloud:
pulumi up
This makes all cloud resources declared in your code. Simply make
edits to your project, and subsequent pulumi up
s will compute
the minimal diff to deploy your changes.
Use Your Program:
Now that your code is deployed, you can interact with it. In the above example, we can find the name of the newly provisioned S3 bucket:
pulumi stack output bucketName
Destroy your Resources:
After you're done, you can remove all resources created by your program:
pulumi destroy -y
To learn more, head over to virtuslab.github.io/besom for much more information, including tutorial, examples, and architecture and programming model concepts.
Pulumi.yaml
is your main Pulumi file, explained here.
project.scala
is the file containing your dependencies for Scala-CLI.
Main.scala
is the entry point for your Infrastructure as Code.
Resources created in Pulumi.run { ... }
block will be created by Pulumi.
A simple example using Scala CLI:
//> using scala "3.3.1"
//> using plugin "org.virtuslab::besom-compiler-plugin:0.3.2"
//> using dep "org.virtuslab::besom-core:0.3.2"
//> using dep "org.virtuslab::besom-aws:6.31.0-core.0.3"
import besom.*
import besom.api.aws
@main def run = Pulumi.run {
val bucket = aws.s3.Bucket("my-bucket")
Stack.exports(
bucketName = bucket.bucket
)
}
[!NOTE] Please pay attention to your dependencies, only use
org.virtuslab::besom-*
* and not `com.pulumi:`. Besom does NOT depend on Pulumi Java SDK**, it is a completely separate implementation.
Stack
structure of your program.Context
.
Context
is available as a given (implicitly) in the Pulumi.run
block, but you can also require it explicitly
in any of your functions with (using Context)
.Scala CLI is the recommended build tool, other tools are also supported. Besom will recognize Scala CLI and SBT programs and automatically recompile them without any further configuration. The supported versions are:
Other build tools are supported via the runtime.options.binary
configuration option that can point to a pre-built jar in
Pulumi.yaml
, e.g.:
name: myproject
runtime:
name: scala
options:
binary: target/myproject-1.0-SNAPSHOT-jar-with-dependencies.jar
Besom uses Scala-CLI for project compilation and execution.
To set up IDE support for an infrastructural project using Besom execute this command inside the directory in which Besom project files exist:
scala-cli setup-ide .
As a result of this command, a .bsp
directory will be created inside the project directory.
When opened, both Intellij IDEA and Metals should automatically recognize the project and set up the IDE accordingly.
sbt, gradle and maven are also supported out-of-the-box,
but are not recommended due to slower iteration speed.
Use of sbt
, gradle
or mvn
support is suggested for situations where managed infrastructure
is being added to an already existing project that uses sbt as the main build tool.
IDE setup for sbt
, gradle
or mvn
works automatically with both Intellij IDEA and Metals.
Mill is not yet supported.
Visit CONTRIBUTING.md for information on building Besom from source or contributing improvements.