rhythmic-branch-12845
04/14/2022, 6:44 AMvictorious-church-57397
04/14/2022, 7:03 AMrhythmic-branch-12845
04/14/2022, 7:13 AMvictorious-church-57397
04/14/2022, 7:17 AMEach stack is an isolated, independently configurable instance of a Pulumi program. Stacks can be used to denote different phases of development
├── README.md
├── pulumi-jira-integration
│ ├── Pulumi.securityhub-jira-integration.yaml
│ ├── Pulumi.yaml
│ ├── index.ts
│ ├── node_modules
│ ├── package-lock.json
│ ├── package.json
│ ├── src
│ ├── tsconfig.json
│ ├── yarn-error.log
│ └── yarn.lock
├── pulumi-org
│ ├── Pulumi.org-security-hub.yaml
│ ├── Pulumi.yaml
│ ├── index.ts
│ ├── node_modules
│ ├── package.json
│ ├── tsconfig.json
│ ├── variables.ts
│ └── yarn.lock
└── pulumi-security-prod
├── Pulumi.security-prod-security-hub.yaml
├── Pulumi.yaml
├── accounts
├── config
├── export.json
├── iam.ts
├── index.ts
├── node_modules
├── package.json
├── s3.ts
├── tsconfig.json
├── utils.ts
├── variables.ts
└── yarn.lock
rhythmic-branch-12845
04/14/2022, 8:28 AM