Spacelift
Pricing
Private beta
Privacy
T&Cs
Searchโฆ
Spacelift
๐
Hello, Spacelift!
๐
Getting Started
๐
Main concepts
Stack
Configuration
Run
Policy
Resources
Worker pools
VCS Agent Pools
๐ฐ
Platforms
Terraform
Pulumi
Getting started
C#
Go
JavaScript
Python
State management
Version management
CloudFormation
Kubernetes
โ
Integrations
Audit trail
Cloud Providers
Source Control
Docker
GraphQL API
Single sign-on
Slack
Webhooks
๐
Product
Privacy
Security
Disaster Continuity
Billing
Terms and conditions
Refund Policy
Cookie Policy
Powered By
GitBook
C#
From this article you can learn how to setup a Pulumi C# Stack in Spacelift
In order to follow along with this article, you'll need an AWS account.
Start with forking the
Pulumi examples repo
, we'll be setting up an example directory from there, namely
aws-cs-webserver
.
In the root of the repository (not the aws-cs-webserver directory), add a new file:
.spacelift/config.yml
1
version
:
"1"
2
โ
3
stack_defaults
:
4
before_apply
:
5
-
dotnet clean
6
-
rm
-
rf bin
7
-
rm
-
rf obj
Copied!