Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ param name string = 'azmc'
@description('Accept the Minecraft Server EULA.')
@allowed([true])
param acceptEula bool
@description('The desired Minecraft server version')
param minecraftVersion string = 'LATEST'
@description('The memory size of the server in GB. Increase for large servers or maps.')
param serverMemorySize int = 3
@description('The type of server to deploy. Check the documentation for the list of supported server types: https://docker-minecraft-server.readthedocs.io/en/latest/types-and-platforms/. Commonly used types are SPIGOT, PAPER, and FORGE.')
Expand Down Expand Up @@ -80,6 +82,7 @@ module server 'modules/server.bicep' = {
location: location
acceptEula: acceptEula
serverType: serverType
minecraftVersion: minecraftVersion
projectName: name
serverStorageAccountName: storageServer.outputs.storageAccountServerName
serverShareName: storageServer.outputs.storageAccountFileShareServerName
Expand Down
Loading