pulumi/tests/containers/dotnet/Program.fs
Chris Smith 7818c219e8
Add .NET Core SDK to pulumi/pulumi container (#3616)
* Add tests for the pulumi/actions container

* Add .NET Core SDK to pulumi/pulumi container

* Address PR feedback

* Update CHANGELOG.md
2019-12-17 11:05:19 -08:00

17 lines
270 B
Forth

module Program
open System
open Pulumi.FSharp
let infra () =
let config = new Pulumi.Config()
let runtime = config.Get("runtime")
Console.WriteLine("Hello from {0}", runtime)
// Stack outputs
dict []
[<EntryPoint>]
let main _ =
Deployment.run infra