Skip to content

Commit

Permalink
fix: logGroup type awsLogDriver to LogDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkuan committed Feb 18, 2021
1 parent cf9f231 commit 3b16fc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ new ValheimWorld(scope: Construct, id: string, props?: ValheimWorldProps)
* **environment** (<code>Map<string, string></code>) https://github.com/lloesche/valheim-server-docker#environment-variables. __*Optional*__
* **fileSystem** (<code>[FileSystem](#aws-cdk-aws-efs-filesystem)</code>) *No description* __*Optional*__
* **image** (<code>[ContainerImage](#aws-cdk-aws-ecs-containerimage)</code>) *No description* __*Optional*__
* **logGroup** (<code>[AwsLogDriver](#aws-cdk-aws-ecs-awslogdriver)</code>) Valheim Server log Group. __*Default*__: Create the new AWS Cloudwatch Log Group for Valheim Server.
* **logGroup** (<code>[LogDriver](#aws-cdk-aws-ecs-logdriver)</code>) Valheim Server log Group. __*Default*__: Create the new AWS Cloudwatch Log Group for Valheim Server.
* **memoryLimitMiB** (<code>number</code>) The amount (in MiB) of memory used by the task. __*Default*__: 2048
* **vpc** (<code>[IVpc](#aws-cdk-aws-ec2-ivpc)</code>) *No description* __*Optional*__

Expand Down Expand Up @@ -68,7 +68,7 @@ Name | Type | Description
**environment**? | <code>Map<string, string></code> | https://github.com/lloesche/valheim-server-docker#environment-variables.<br/>__*Optional*__
**fileSystem**? | <code>[FileSystem](#aws-cdk-aws-efs-filesystem)</code> | __*Optional*__
**image**? | <code>[ContainerImage](#aws-cdk-aws-ecs-containerimage)</code> | __*Optional*__
**logGroup**? | <code>[AwsLogDriver](#aws-cdk-aws-ecs-awslogdriver)</code> | Valheim Server log Group.<br/>__*Default*__: Create the new AWS Cloudwatch Log Group for Valheim Server.
**logGroup**? | <code>[LogDriver](#aws-cdk-aws-ecs-logdriver)</code> | Valheim Server log Group.<br/>__*Default*__: Create the new AWS Cloudwatch Log Group for Valheim Server.
**memoryLimitMiB**? | <code>number</code> | The amount (in MiB) of memory used by the task.<br/>__*Default*__: 2048
**vpc**? | <code>[IVpc](#aws-cdk-aws-ec2-ivpc)</code> | __*Optional*__

Expand Down
2 changes: 1 addition & 1 deletion src/valheim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface ValheimWorldProps {
*
* @default - Create the new AWS Cloudwatch Log Group for Valheim Server.
*/
readonly logGroup?: ecs.AwsLogDriver;
readonly logGroup?: ecs.LogDriver;
}


Expand Down

0 comments on commit 3b16fc5

Please sign in to comment.