@mstuercke/pulumi-modules 0.0.21 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,4 +28,3 @@ export declare class Auth0 extends ComponentResource {
28
28
  connectionName: Output<string>;
29
29
  constructor(name: string, args: Auth0Args, opts?: ComponentResourceOptions);
30
30
  }
31
- //# sourceMappingURL=Auth0.d.ts.map
@@ -3,4 +3,3 @@ export * from './Auth0.ts';
3
3
  export declare const auth0: {
4
4
  Auth0: typeof Auth0;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
@@ -11,4 +11,3 @@ export type DomainResult = {
11
11
  euCentral1CertificateArn: string;
12
12
  };
13
13
  export declare const getDomain: (options: DataDomainOptions) => Promise<DomainResult>;
14
- //# sourceMappingURL=getDomain.d.ts.map
@@ -2,4 +2,3 @@ export * from './getDomain.ts';
2
2
  export declare const domain: {
3
3
  getDomain: (options: import("./getDomain.ts").DataDomainOptions) => Promise<import("./getDomain.ts").DomainResult>;
4
4
  };
5
- //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,3 @@ import { type ComponentResourceOptions } from '@pulumi/pulumi';
4
4
  export declare class SimpleIamRolePolicy extends iam.RolePolicy {
5
5
  constructor(iamRoleId: string, config: SimpleIamRolePolicyConfig, opts?: ComponentResourceOptions);
6
6
  }
7
- //# sourceMappingURL=SimpleIamRolePolicy.d.ts.map
@@ -55,4 +55,3 @@ interface EventBridgeConfig {
55
55
  ruleArn: Input<string>;
56
56
  }
57
57
  export {};
58
- //# sourceMappingURL=SimpleIamRolePolicyConfig.d.ts.map
@@ -4,4 +4,3 @@ export * from './SimpleIamRolePolicyConfig.ts';
4
4
  export declare const iam: {
5
5
  SimpleIamRolePolicy: typeof SimpleIamRolePolicy;
6
6
  };
7
- //# sourceMappingURL=index.d.ts.map
package/dist/index.d.ts CHANGED
@@ -43,4 +43,3 @@ export declare const mstuercke: {
43
43
  WebsocketApi: typeof import("./websocket/WebsocketApi.ts").WebsocketApi;
44
44
  };
45
45
  };
46
- //# sourceMappingURL=index.d.ts.map
@@ -14,4 +14,3 @@ export declare class LambdaCronTrigger extends ComponentResource {
14
14
  ruleArn: Output<string>;
15
15
  constructor(resourceName: string, args: LambdaCronTriggerArgs, opts?: ComponentResourceOptions);
16
16
  }
17
- //# sourceMappingURL=LambdaCronTrigger.d.ts.map
@@ -18,4 +18,3 @@ export declare class NodeLambdaFunction<EnvironmentVariables extends Record<stri
18
18
  invokeArn: Output<string>;
19
19
  constructor(args: NodeLambdaFunctionArgs<EnvironmentVariables>, opts?: ComponentResourceOptions);
20
20
  }
21
- //# sourceMappingURL=NodeLambdaFunction.d.ts.map
@@ -2,4 +2,3 @@ import type { Input } from '@pulumi/pulumi';
2
2
  export type WithInputs<T> = {
3
3
  [key in keyof T]: Input<T[key]>;
4
4
  };
5
- //# sourceMappingURL=WithInputs.d.ts.map
@@ -6,4 +6,3 @@ export declare const lambda: {
6
6
  NodeLambdaFunction: typeof NodeLambdaFunction;
7
7
  LambdaCronTrigger: typeof LambdaCronTrigger;
8
8
  };
9
- //# sourceMappingURL=index.d.ts.map
@@ -10,4 +10,3 @@ export declare class MongoDBCustomInstance extends ComponentResource {
10
10
  readonly databaseName: string;
11
11
  constructor(name: string, args: MongoDBCustomInstanceArgs, opts?: ComponentResourceOptions);
12
12
  }
13
- //# sourceMappingURL=MongoDBCustomInstance.d.ts.map
@@ -9,4 +9,3 @@ export declare class MongoDBDefaultInstance extends ComponentResource {
9
9
  readonly databaseName: string;
10
10
  constructor(name: string, args: MongoDBDefaultInstanceArgs, opts?: ComponentResourceOptions);
11
11
  }
12
- //# sourceMappingURL=MongoDBDefaultInstance.d.ts.map
@@ -10,4 +10,3 @@ export declare class MongoDBUser extends ComponentResource {
10
10
  readonly password: Output<string>;
11
11
  constructor(name: string, args: MongoDBUserArgs, opts?: ComponentResourceOptions);
12
12
  }
13
- //# sourceMappingURL=MongoDBUser.d.ts.map
@@ -9,4 +9,3 @@ export declare const mongodb: {
9
9
  MongoDBDefaultInstance: typeof MongoDBDefaultInstance;
10
10
  MongoDBUser: typeof MongoDBUser;
11
11
  };
12
- //# sourceMappingURL=index.d.ts.map
@@ -13,4 +13,3 @@ export declare class Postgres extends ComponentResource {
13
13
  readonly password: Input<string>;
14
14
  constructor(name: string, options: PostgresOptions, opts?: ComponentResourceOptions);
15
15
  }
16
- //# sourceMappingURL=Postgres.d.ts.map
@@ -3,4 +3,3 @@ export * from './Postgres.ts';
3
3
  export declare const postgres: {
4
4
  Postgres: typeof Postgres;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
@@ -17,4 +17,3 @@ export declare class RestApi extends aws.apigateway.RestApi {
17
17
  readonly url: string;
18
18
  constructor(resourceName: string, args: RestApiArgs, opts?: ComponentResourceOptions);
19
19
  }
20
- //# sourceMappingURL=RestApi.d.ts.map
@@ -3,4 +3,3 @@ export * from './RestApi.ts';
3
3
  export declare const rest: {
4
4
  RestApi: typeof RestApi;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
@@ -1,12 +1,11 @@
1
- import { Bucket, type BucketArgs } from '@pulumi/aws/s3';
1
+ import { s3 } from '@pulumi/aws';
2
2
  import type { ComponentResourceOptions } from '@pulumi/pulumi';
3
3
  type PublicS3BucketArgs = {
4
4
  name: string;
5
5
  allowPresignedPost?: boolean;
6
- tags?: BucketArgs['tags'];
6
+ tags?: s3.BucketArgs['tags'];
7
7
  };
8
- export declare class PublicS3Bucket extends Bucket {
8
+ export declare class PublicS3Bucket extends s3.Bucket {
9
9
  constructor(id: string, args: PublicS3BucketArgs, opts?: ComponentResourceOptions);
10
10
  }
11
11
  export {};
12
- //# sourceMappingURL=PublicS3Bucket.d.ts.map
@@ -1,24 +1,24 @@
1
- import { Bucket, BucketAclV2, BucketCorsConfigurationV2, BucketOwnershipControls, BucketPolicy, BucketPublicAccessBlock, } from '@pulumi/aws/s3';
2
- export class PublicS3Bucket extends Bucket {
1
+ import { s3 } from '@pulumi/aws';
2
+ export class PublicS3Bucket extends s3.Bucket {
3
3
  constructor(id, args, opts) {
4
4
  const { name, allowPresignedPost = false, tags } = args;
5
5
  super(id, { bucket: name, tags }, opts);
6
- const accessBlock = new BucketPublicAccessBlock('public-access', {
6
+ const accessBlock = new s3.BucketPublicAccessBlock('public-access', {
7
7
  bucket: this.id,
8
8
  blockPublicAcls: false,
9
9
  blockPublicPolicy: false,
10
10
  ignorePublicAcls: false,
11
11
  restrictPublicBuckets: false,
12
12
  }, { parent: this });
13
- const ownershipControls = new BucketOwnershipControls('ownership', {
13
+ const ownershipControls = new s3.BucketOwnershipControls('ownership', {
14
14
  bucket: this.id,
15
15
  rule: { objectOwnership: 'BucketOwnerPreferred' },
16
16
  }, { parent: this, dependsOn: [accessBlock] });
17
- new BucketAclV2('acl', {
17
+ new s3.BucketAclV2('acl', {
18
18
  bucket: this.id,
19
19
  acl: 'public-read',
20
20
  }, { parent: this, dependsOn: [ownershipControls] });
21
- new BucketPolicy('policy', {
21
+ new s3.BucketPolicy('policy', {
22
22
  bucket: this.id,
23
23
  policy: this.arn.apply((arn) => JSON.stringify({
24
24
  Version: '2012-10-17',
@@ -33,7 +33,7 @@ export class PublicS3Bucket extends Bucket {
33
33
  ],
34
34
  })),
35
35
  }, { parent: this, dependsOn: [accessBlock] });
36
- new BucketCorsConfigurationV2('allowAll', {
36
+ new s3.BucketCorsConfigurationV2('allowAll', {
37
37
  bucket: this.bucket,
38
38
  corsRules: [
39
39
  {
@@ -3,4 +3,3 @@ export * from './PublicS3Bucket.ts';
3
3
  export declare const s3: {
4
4
  PublicS3Bucket: typeof PublicS3Bucket;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@ export declare class StaticWebsite extends ComponentResource {
15
15
  bucket: PublicS3Bucket;
16
16
  constructor(name: string, args: StaticWebsiteArgs, opts?: ComponentResourceOptions);
17
17
  }
18
- //# sourceMappingURL=StaticWebsite.d.ts.map
@@ -3,4 +3,3 @@ export * from './StaticWebsite.ts';
3
3
  export declare const website: {
4
4
  StaticWebsite: typeof StaticWebsite;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
@@ -6,4 +6,3 @@ interface File {
6
6
  }
7
7
  export declare function readFilesRecursive(dir: string): File[];
8
8
  export {};
9
- //# sourceMappingURL=readFilesRecursive.d.ts.map
@@ -20,4 +20,3 @@ export declare class WebsocketApi extends ComponentResource {
20
20
  url: string;
21
21
  constructor(resourceName: string, args: WebsocketApiArgs, opts?: ComponentResourceOptions);
22
22
  }
23
- //# sourceMappingURL=WebsocketApi.d.ts.map
@@ -3,4 +3,3 @@ export * from './WebsocketApi.ts';
3
3
  export declare const websocket: {
4
4
  WebsocketApi: typeof WebsocketApi;
5
5
  };
6
- //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mstuercke/pulumi-modules",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "files": [
5
5
  "dist/**/!(*.test|*.fixture){.d.ts,.js}",
6
6
  "README.md"
@@ -29,7 +29,7 @@
29
29
  "mime": "^3.0.0"
30
30
  },
31
31
  "devDependencies": {
32
- "@mstuercke/node-utils": "0.0.2",
32
+ "@mstuercke/node-utils": "0.0.3",
33
33
  "typescript": "5.7.3"
34
34
  },
35
35
  "publishConfig": {