-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
12 changed files
with
1,002 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//> using scala 3.3.1 | ||
//> using options -java-output-version:11 -encoding:utf-8 | ||
//> using options -deprecation -feature -Werror -Wunused:all | ||
|
||
//> using dep org.virtuslab::besom-json:0.1.1-SNAPSHOT | ||
//> using dep org.virtuslab::besom-core:0.1.1-SNAPSHOT | ||
//> using dep org.virtuslab::scala-yaml:0.0.8 | ||
|
||
//> using test.dep "org.scalameta::munit:1.0.0-M10" | ||
|
||
//> using publish.name "besom-auto" | ||
//> using publish.organization "org.virtuslab" | ||
//> using publish.url "https://github.com/VirtusLab/besom" | ||
//> using publish.vcs "github:VirtusLab/besom" | ||
//> using publish.license "Apache-2.0" | ||
//> using publish.repository "central" | ||
//> using publish.developer "lbialy|Łukasz Biały|https://github.com/lbialy" | ||
//> using publish.developer "pawelprazak|Paweł Prażak|https://github.com/pawelprazak" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package besom.auto | ||
|
||
/** Stack is an isolated, independently configurable instance of a Pulumi program. Stack exposes methods for the full pulumi lifecycle | ||
* (up/preview/refresh/destroy), as well as managing configuration. Multiple Stacks are commonly used to denote different phases of | ||
* development (such as development, staging and production) or feature branches (such as feature-x-dev, jane-feature-x-dev). | ||
* | ||
* @param workspace | ||
* the workspace associated with the stack | ||
* @param stackName | ||
* the name of the stack | ||
*/ | ||
case class Stack(workspace: Workspace, stackName: String) | ||
|
Oops, something went wrong.