Skip to content

Commit 9e60202

Browse files
committed
VPC is optional
1 parent 75186b0 commit 9e60202

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/function/PhpFunction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { VpcForServerlessApp } from '../vpc/VpcForServerlessApp';
1010
export type PhpFunctionProps = Partial<FunctionProps> & {
1111
phpVersion?: '8.0' | '8.1' | '8.2';
1212
handler: string;
13-
vpc: IVpc | VpcForServerlessApp;
13+
vpc?: IVpc | VpcForServerlessApp;
1414
};
1515

1616
export class PhpFunction extends Function {

0 commit comments

Comments
 (0)