Skip to content

Commit

Permalink
aws-setup: add lint
Browse files Browse the repository at this point in the history
Issue: ecamp#3478
  • Loading branch information
BacLuc committed Jul 31, 2023
1 parent 4f726c5 commit 8c3584a
Show file tree
Hide file tree
Showing 5 changed files with 2,293 additions and 116 deletions.
4 changes: 3 additions & 1 deletion aws-setup/.prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@

/.aws
/.pulumi
/package*.json
10 changes: 5 additions & 5 deletions aws-setup/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as awsx from "@pulumi/awsx";
import * as pulumi from '@pulumi/pulumi'
import * as aws from '@pulumi/aws'
import * as awsx from '@pulumi/awsx'

// Create an AWS resource (S3 Bucket)
const bucket = new aws.s3.Bucket("my-bucket");
const bucket = new aws.s3.Bucket('my-bucket')

// Export the name of the bucket
export const bucketName = bucket.id;
export const bucketName = bucket.id
Loading

0 comments on commit 8c3584a

Please sign in to comment.