Questions tagged [ssm]

Use this tag when your question has to be with problems or doubts about the AWS Systems Manager product.

AWS Systems Manager is a collection of capabilities for configuring and managing Amazon EC2 instances, on-pr.emises servers and virtual machines, and other AWS resources at scale.

Systems Manager gives you a complete view of your infrastructure performance and configuration, simplifies resource and application management, and makes it easy to operate and manage infrastructures.

More information can be found in the AWS help center

168 questions
0
votes
1 answer

Confd ignores the role set on my aws config?

I'm currently trying to setup a confd POC using SSM as provider for the keys, we currently have one account on AWS which is the root account and multiples roles to separate the environments. currently my AWS config looks like…
Eric Nascimento
  • 381
  • 3
  • 15
0
votes
1 answer

'ImportError: No module named sqlalchemy' error when trying to run ec2 python script from ssm

I am trying to run a python script on my ec2 instance using ssm runShellScript from Lambda. When testing with a simple script that creates a text file, it runs with no problem. I can see the text file on ec2. But when trying to run the intended…
Sharanya
  • 45
  • 1
  • 8
0
votes
1 answer

Network Error: Connection Refused in AWS EC2 Instance

I Installed tomcat and AD connectivity configuration also, After that, I am getting 'Network error: Connection refused' while ssh access to the instance. In Security Groups, all traffic allowed to the bastion host. I go on through all the solution…
jawad846
  • 683
  • 1
  • 9
  • 21
0
votes
1 answer

AWS Session Manager in docker output ^@ indefinitely

I've build a custom docker image from python:3.6 with awscli and session manager: FROM python:3.6 WORKDIR /app RUN pip3 install -U awscli RUN apt-get update -y && \ apt-get install groff less curl -y && \ curl…
Kaymaz
  • 454
  • 8
  • 23
0
votes
2 answers

Implement a Lambda function to run commands via SSM

I have a run document in ssm to install some agents on the server. Now, I wanted to automate this task by running these documents whenever a new instance is launched. I want to achieve this through aws lambda(script to implement run commands upon…
0
votes
1 answer

AWS/SSM/AWS-RunPatchBaseline

I'm in the process of exploring AWS SSM to apply Patches on multiple AWS accounts. I was able to implement this successfully using respective AWS documents. During my implementation process, I used AWS-RunPatchBaseline document to update my linux…
beginner
  • 11
  • 5
0
votes
1 answer

How to invoke a AWS Lambda function using SSM

I am new to AWS SSM, my requirement is I have a Lambda function created for which I have to invoke this lambda using an SSM Document is it achievable? If so how please explain. Thanks in Advance
0
votes
1 answer

State space models/Kalman filter instability

I am using KFAS (in R) to estimate a local level state space model (smoothing, Gaussians). In order to evaluate the sensitivity of the estimation, I am introducing a single local perturbation (e.g. a small block of 20 time points with a value of…
0
votes
1 answer

aws boto pass variable

ssm = boto3.client('ssm' ) instance = 'i-123123' response = ssm.send_command( InstanceIds=[ instance ], DocumentName='AWS-RunShellScript', Comment='slack testing', Parameters={ "commands":[ "hostname" ] } ) …
0
votes
1 answer

AWS SSM to patch on-prem servers?

I am trying to patch on-prem servers using aws SSM. When I use 'run command' I am specifying a tag to limit patching to a set of servers. Unfortunately, this isn't listing targetted servers basing on tag selection. Is there any other alternative? I…
0
votes
1 answer

AWS IAM - can a service know the role invoking it?

Overall goal: I am writing a wrapper around the AWS Parameter Store for our micro service environment (all new). Basically, I'm trying to ease the transition from one service provider to another if we decide to move to Azure, e.g., so only this…
ps2goat
  • 8,067
  • 1
  • 35
  • 68
0
votes
0 answers

SSM with Shiro, filter ineffective, just display only when you login then you can see the page, why it happens?

After the project starts, it displayed only after success login ,then you can see the page, when I debug, found SecurityFilter not excute, UserRealm doGetAuthorizationInfo () method is not excute. where is the problem? Grateful! . Can anyone help…
heather
  • 31
  • 1
  • 4
0
votes
1 answer

ssm simple-spring-memcached - cache write not working

I am using the SSMCache#put API directly to get a cache and update on a key. Intially I have read the value from cache using below spring-cache annotated method. @Cacheable(value="CACHE_JOURNALS", key="#ID") public JournalBean…
JayabalanAaron
  • 360
  • 3
  • 13
0
votes
1 answer

how to cache collection or array parameters with simple-spring-memcache

My project use a simple-spring-memcache to caching a service method, but it does't work, as follows: @ReadThroughSingleCache(namespace = "AdvServiceImpl.findByIdList", expiration = 60) public List findByIdList(@ParameterValueKeyProvider(order =…
justlee
  • 13
  • 1
0
votes
1 answer

Invalidating namespace using simple spring memcached

Has anyone tried invalidating a memcached namespace based on timestamp? For e.g. I need to have a memcached namespace which is the timestamp of the tomcat server that hosts my API services. I need to annotate my method calls so that the namespace…
gotz
  • 539
  • 2
  • 8
  • 23
1 2 3
11
12