UTC: 2022-01-03 16:00
burck1/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
| Ref: http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#chap-rest | |
| Authentication - http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#rest-api-auth-json | |
| Token Validation - http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#rest-api-token-validation | |
| User Self Registration - http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#rest-api-self-registration | |
| Reseting Forgotten Passwords - http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#rest-api-password-reset | |
| Identity Management - http://openam.forgerock.org/openam-documentation/openam-doc-source/doc/dev-guide/index/chap-rest.html#rest-api-crud-identity | |
| Login v1: |
UTC: 2022-01-03 16:00
burck1/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "kms:Decrypt" | |
| ], | |
| "Resource": "arn:aws:kms:us-east-1:xxxxxxxxxxx:alias/aws/ssm" | |
| }, |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Principal": { | |
| "AWS": "arn:aws:iam::999999999999:role/octopus-deploy-server" | |
| }, | |
| "Action": "sts:AssumeRole" | |
| } |
| import os | |
| import boto3 | |
| import json | |
| CONFIG_PREFIX = os.getenv('CONFIG_PREFIX') | |
| if not CONFIG_PREFIX: | |
| raise Exception('The CONFIG_PREFIX environment variable is not set. Set this value to continue.') | |
| ssm = boto3.client('ssm') |
| Chocolatey v0.10.15 | |
| Chocolatey is running on Windows v 10.0.19042.0 | |
| Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old". | |
| Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old". | |
| Command line: "C:\ProgramData\chocolatey\choco.exe" install vcredist2010 -debug -verbose | |
| Received arguments: install vcredist2010 -debug -verbose | |
| RemovePendingPackagesTask is now ready and waiting for PreRunMessage. | |
| Sending message 'PreRunMessage' out if there are subscribers... | |
| [Pending] Removing all pending packages that should not be considered installed... | |
| Performing validation checks. |
| ''' | |
| Run this script periodically to automagically update | |
| a domain name with your current public IP. Schedule | |
| this to run periodically on a Raspberry Pi for a | |
| poor man's Dynamic DNS (DDNS). | |
| Run "python route53_ddns.py --help" for more info. | |
| ''' | |
| import boto3 | |
| import requests |