Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dimensiondataresearch/cloudcontrol-powershell-core
Powershell Core module for Dimension Data CloudControl
https://github.com/dimensiondataresearch/cloudcontrol-powershell-core
dotnet-core powershell powershell-core
Last synced: 28 days ago
JSON representation
Powershell Core module for Dimension Data CloudControl
- Host: GitHub
- URL: https://github.com/dimensiondataresearch/cloudcontrol-powershell-core
- Owner: DimensionDataResearch
- License: mit
- Created: 2017-02-17T04:36:47.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2017-05-09T04:16:14.000Z (over 7 years ago)
- Last Synced: 2024-09-27T21:21:00.191Z (about 1 month ago)
- Topics: dotnet-core, powershell, powershell-core
- Language: C#
- Size: 75.2 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CloudControl module for PowerShell Core
## Introduction
A Powershell Core module for interacting with Dimension Data CloudControl.
It's functional, but definitely still a work in progress.## Requirements
Needs PowerShell Core v6.0.0-alpha17 or newer.
## Getting started
To get started:```bash
dotnet restore lib/cloudcontrol-client-core
dotnet build lib/cloudcontrol-client-coredotnet restore
dotnet build
dotnet publish -c release -o $PWD/bin/release
```Then, in powershell:
```powershell
Import-Module './bin/release/CloudControl.psd1'
New-CloudControlConnection -Name 'Australia' -Region 'AU' -UserName 'my_mcp_username' -Password 'my_mcp_password' -SetDefaultGet-CloudControlUserAccount -My
```