Skip to content

Instantly share code, notes, and snippets.

@gaelcolas
Created February 7, 2018 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaelcolas/589b26a6d89bba432b07d55cce8c8c52 to your computer and use it in GitHub Desktop.
Save gaelcolas/589b26a6d89bba432b07d55cce8c8c52 to your computer and use it in GitHub Desktop.
$ConfigurationData = @{
AllNodes = @(
@{
Nodename = 'SRV01'
Role = 'ServerType1_Application'
},
@{
Nodename = 'SRV02'
Role = 'ServerType2_Application'
}
)
Roles = @{
ServerType1_Application = @{
Configurations = @('ServerType','Application')
ServerType = @{
# ServerType1 Data
}
Application = @{
#Application Data
}
}
ServerType2_Application = @{
Configurations = @('ServerType','Application')
ServerType = @{
# ServerType1 Data
}
Application = @{
#Application Data
}
}
}
}
@affieuk
Copy link

affieuk commented Feb 7, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment