You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I dont have much experience in AWS, at all, and I am standing up Orchestrator on a government network, therefore I need to implement secrets manager for the orchestrator password in the main.template.yaml file.
Currently I have this in the yaml file for the section containing the orchestrator password: (note the password and ARN values are fake)
using this, i receive the error that the parameter "Properties" is invalid, however every documentation I look at has it, and I don't see what the issue is... if i remove it, then the error moves down to Description: and the YAML not being well-formed.
Please if anybody has any advice or knowledge on adding secrets to the template for orchestrator it would be greatly appreciated :)
Hi there,
I dont have much experience in AWS, at all, and I am standing up Orchestrator on a government network, therefore I need to implement secrets manager for the orchestrator password in the main.template.yaml file.
Currently I have this in the yaml file for the section containing the orchestrator password: (note the password and ARN values are fake)
OrchestratorPassword:
Type: 'AWS::SecretsManager::Secret'
Properties:
Name: uipathtestjadsecretspass
Description: Orchestrator Password
SecretString: '{"password":"passwordexample"}'
ReplicaRegions:
- Region: ca-central-1
KmsKeyId: put ARN:aws:key:blahblah here
Tags:
-
Key: password
Value: passwordexample
using this, i receive the error that the parameter "Properties" is invalid, however every documentation I look at has it, and I don't see what the issue is... if i remove it, then the error moves down to Description: and the YAML not being well-formed.
Please if anybody has any advice or knowledge on adding secrets to the template for orchestrator it would be greatly appreciated :)