aws-cloudformation-resource-providers-awsutilities-commandrunner
aws-cloudformation-resource-providers-awsutilities-commandrunner copied to clipboard
Hi , I am unable run the below command using CommandeRunner utility, however I can run it successfully using CLI directly aws ecs update-service --region us-east-1 --cluster xxxxxx --service xxxxxxxx...
To reproduce: ``` Resources: CommandRunner: Type: 'AWSUtility::CloudFormation::CommandRunner' Properties: Command: echo 1 > /command-output.txt ``` 1. Create stack with template above 2. Modify to "echo 2", create change set 3. Execute...
Please add support to avoid this error : DenyCreationofUnencryptedEBSVolumesandSnapshots
Created a yaml file for dynamo db, getting below error while trying to import from AWS CFT. ---------------------------- There was an error creating this change set 1 validation error detected:...
Hi, will resource take care to use ssm service to execute bash command if there is no direct internet access available, generally internet access is not available or restricted
It looks like SecurityGroupId parameter only support 1 security group id. We would like to pass 2 security group ids as CommaDelimitedList type, but currently implementation doesn't support. Is there...
Some organisations leverage Service Control Policies SCPs (e.g. for cost control) that enforce putting proper tags on your resources. In such scenarios CommandRunner won't be able to create an EC2...
Hi i'm using Cloudformation and SAM for deploying project infrastrcuture. While using CommandRunner custom resource I faced with an issue of updating/adding/removing `Command` section. So it fails to deploy infrastructure...
Right now we can do anything in the bash command (``Command`` parameter) - we can fetch values from e.g. RDS, we can use AWS CLI to get some information, initialise...
I am simply running the command: ``` !Sub "sleep 10; aws lambda invoke --function-name ${functionName} --region ${AWS::Region} ; echo FINISHED > /command-output.txt" ``` - Have followed the guide [here](https://aws.amazon.com/blogs/mt/running-bash-commands-in-aws-cloudformation-templates/) -...