- Clone git repo
- RUN
cd CICD-pipeline-with-pulumi
- RUN
npm install
cd
insidepulumi/infrastructure
folder- Create new pulumi stack
pulumi stack init <stack-name>
. For example:pulumi stack init dev
. - Add all config variables from the
pulumi.yaml
to stack configuration. RUNpulumi config set <key> <value>
. For example:pulumi config set aws:region us-east-1
. - RUN
pulumi up
command
The infrastructure should now be deployed 🎉
cd
insidepulumi/cicd-pipeline
folder- Create new pulumi stack
pulumi stack init <stack-name>
- Add all config variables from the
pulumi.yaml
to stack configuration. To add secrets usepulumi config set <key> <value> --secret
command. - RUN
pulumi up
command
The pipeline should now be deployed 🎉