Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,151
Community Members
 
Community Events
184
Community Groups

how to pass credentials through bamboo to powershell script to auto deploy SSAS cube

we are using power shell script to auto deploy SSAS cubes and the script is working fine with windows credentials when executed from windows powershell editor.

But when trying to execute the same from Bamboo, by default it is using some generic ID to deploy the cube which is throwing an error (issue with permissions)..

Could anyone help to pass windows credentials/specified credentials instead of bamboo default credentials for deployment.

 

1 answer

0 votes
Minh Tran
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 17, 2020

Can you share the power script that you used to deploy to SSAS cubes including the part that you pass the credential?

Please find below the Powershell script..

 

Param(

$ServerInstance ="ServerName",
$path = "Bitbucket\bld-dir\path"

)


## Add the AMO namespace
$loadInfo = [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")


$password = ConvertTo-SecureString “Password” -AsPlainText -Force

$Cred = New-Object System.Management.Automation.PSCredential (“Domain\Username”, $password)


$server = New-Object Microsoft.AnalysisServices.Server
$server.connect($ServerInstance)



Invoke-ASCmd -Server $ServerInstance -InputFile $path\File.xmla -Credential $Cred

Kindly suggest the change to be done so that that deployment happens from bamboo with "Domain\UserName" and not with Bamboo default credentials. Thanks!!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events