mirror of
https://github.com/Smaug123/PulumiConfig
synced 2025-10-06 17:18:39 +00:00
14 lines
363 B
Forth
14 lines
363 B
Forth
namespace PulumiWebServer
|
|
|
|
open Pulumi.Command.Remote
|
|
|
|
type Module =
|
|
{
|
|
/// This is expected to be able to run in parallel with any
|
|
/// other Module.
|
|
WriteConfigFile : Command
|
|
/// This is expected to be able to run in parallel with any
|
|
/// other Module. TODO actually it's not?
|
|
EnableConfig : Command list
|
|
}
|