зеркало из https://github.com/microsoft/zMonitor.git
Generalizing and minor text edits
This commit is contained in:
Родитель
32b6d26859
Коммит
495f5ea412
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Contributing
|
||||
|
||||
We are thrilled that you'd like to contribute to this project. You help is essential for keep it great.
|
||||
We are thrilled that you'd like to contribute to this project. The community will drive the usefulness of this project.
|
||||
|
||||
This project adheres to the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information, see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
||||
By participating, you are expected to uphold this code.
|
|
@ -1 +1 @@
|
|||
Please refer to the documentation folder for deployment instructions.
|
||||
Please refer to the documentation in the root for deployment instructions.
|
|
@ -12,9 +12,9 @@ $Conn = Get-AutomationConnection -Name AzureRunAsConnection
|
|||
Add-AzureRMAccount -ServicePrincipal -Tenant $Conn.TenantID -ApplicationId $Conn.ApplicationID -CertificateThumbprint $Conn.CertificateThumbprint
|
||||
|
||||
# Set service provider Azure storage account and get the context
|
||||
$StorageAccountName = "springcspopsdump"
|
||||
$StorageContainerName = "omslogcsv"
|
||||
$StorageAccountKey = "f9xxQl2cRhZE4go2ZzPvNfgO7zHAJDHUeFVur/g/bd1XUaavYsb5jxxcNt0P884bUq2prBy3+4inVlDvqMGLtQ=="
|
||||
$StorageAccountName = "<STORAGE ACCOUNT>"
|
||||
$StorageContainerName = "<STORAGE CONTAINER NAME>"
|
||||
$StorageAccountKey = "<STORAGE ACCOUNT KEY>"
|
||||
$Ctx = New-AzureStorageContext $StorageAccountName -StorageAccountKey $StorageAccountKey
|
||||
#Get-AzureStorageContainer -Name $StorageContainerName -Context $Ctx
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Microsoft Operations Management Suite
|
||||
|
||||
Original template located at [https://github.com/Azure/azure-quickstart-templates/tree/master/oms-all-deploy](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-all-deploy)
|
||||
|
||||
[![Deploy to Azure](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fazure%2Fazure-quickstart-templates%2Fmaster%2Foms-all-deploy%2F%2Fazuredeploy.json)
|
||||
<a href="http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Foms-all-deploy%2Fazuredeploy.json" target="_blank">
|
||||
<img src="http://armviz.io/visualizebutton.png"/>
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
$TenantID = "d30b7b5b-514d-412e-9f07-e5958292afc8"
|
||||
$SubscriptionID = "D8F3F8EB-779D-4495-A12E-A9DF6B081B36"
|
||||
# The config settings are for CSP partners, which need the TenantID as well as SubscriptionID.
|
||||
# For non-CSP deployments, the TenantID is not used.
|
||||
$TenantID = "<TenantID>"
|
||||
$SubscriptionID = "<Tenant SubscriptionID>"
|
||||
$resourceGroupName = "zMonitor"
|
||||
$resourceRegion = "West Europe"
|
||||
$templateFilePath = "C:\Users\sprin\OneDrive - Microsoft\30 My IP Development Space\OSP Resources\Tenant\oms-all-deploy\azuredeploy.json"
|
||||
$resourceRegion = "West Europe" # Your preferred region
|
||||
$templateFilePath = "<FULL PATH TO>\Tenant\oms-all-deploy\azuredeploy.json"
|
||||
|
||||
# Remove TenantID for non-CSP deployments
|
||||
Login-AzureRmAccount -TenantId $TenantID -SubscriptionId $SubscriptionID
|
||||
|
||||
$resourceGroup = Get-AzureRmResourceGroup -Name $resourceGroupName -ErrorAction SilentlyContinue
|
||||
|
|
Загрузка…
Ссылка в новой задаче