Created
February 7, 2018 01:38
-
-
Save gaelcolas/589b26a6d89bba432b07d55cce8c8c52 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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 | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/gaelcolas/589b26a6d89bba432b07d55cce8c8c52#file-configdata-ps1-L27
Shouldn't that say ServerType2 Data?