Questions tagged [sts]

194 questions
1
vote
1 answer

AWS stscreds SDK to refresh credentials for cross account assume roles

I have setup cross account reading kinesis stream, but i get security token expired error when kinesis client is reading records. I used sts assume role to assume roleA in accountA, then use roleA credentials to assume roleB, lastly return the…
Luki Hou
  • 15
  • 3
1
vote
0 answers

AWS Cross Account Assume Role operation in AWS Batch

I know that there are couple of questions posted on this topic but I believe my situation is slightly different. I have a team which is called team A that has AWS account A with federated user mapped to corporate AD. Another team I am supplying data…
Sid
  • 11
  • 1
  • 2
1
vote
1 answer

Converting from Spell Format to STS when each individual has multiple, separate spells

I am trying to convert data of this form to STS format in order to perform sequence analysis: |Person ID |Spell |Start Month |End Month |Status (Economic Activity) | | -------- |----- |------------|----------|---------------------------| …
James
  • 21
  • 2
1
vote
1 answer

No configuration for database at org.telosys.tools.commons.dbcfg.DbConnectionManager.getConnection (line 76)

I am trying to get all entities (in STS) from an existing MYSQL data model. I have been researching many tools, and finally decided to use 'telosys'. This marketplace tool allows you to easily obtain the entities, it is only necessary to configure…
Talenel
  • 422
  • 2
  • 6
  • 25
1
vote
0 answers

The request signature we calculated does not match the signature you provided. Check ... - Python

i'm using this python code, found it on official documentation: https://docs.aws.amazon.com/it_it/general/latest/gr/sigv4-signed-request-examples.html I can do it on Postman. It works there! I'm going crazy, can you help me? This is my code…
adqadq
  • 11
  • 2
1
vote
1 answer

AWS STS: GetFederationToken works locally, but fails from Lambda

I'm trying to call generate a temporary token via STS, using the aws-sdk (Typescript). This is the code which tries to obtain the token. export async function handler() { const token = await sts .getFederationToken({ DurationSeconds:…
marius
  • 1,533
  • 3
  • 16
  • 22
1
vote
1 answer

Eclipse not giving warning when running java code which has compilation errors

When running a Java/Spring code, If the application has compilation errors we get a popup warning as " Code contains compilation error..Continue running ". There is a checkbox there as " Do not ask next time" I ticked that and allowed, Now Even if…
ATUL PATIL
  • 21
  • 3
1
vote
0 answers

Assuming role in AWS is causing a credentials error

I am trying to use Glue schema registry service in AWS with scala (or java should be useful also) and I tested two ways to assume a role but it results in an error: "Unable to load credentials from any of the providers in the chain…
P3gg
  • 23
  • 4
1
vote
3 answers

STS getting this while pull/fetch latest changes Couldn't lock local tracking ref for update

Getting this issue in spring tool suit while fetching/pull latest changes from remote branch. i don't have git bash on my local previously it was working fine right now i am getting below mention issue. Couldn't lock local tracking ref for update
Natesh
  • 331
  • 1
  • 4
  • 15
1
vote
2 answers

Export WAR missing on STS 4.12

yesterday I updated my STS to the latest version 4.12.0 and today when I wanted to export my project to a .war file, this feature was not there anymore. Here you can see how it looked on my previous 4.8 version: I read this issue:…
Carloshf
  • 529
  • 1
  • 6
  • 25
1
vote
1 answer

Scale up mysql with hpa creates an empty database on Kubernetes

I have a cluster with MySQL database which is a StatefulSet. I would like to scale up my database with hpa. The problem is that the second database that has been created is empty. I don't know how to synchronize the second with the first…
alex
  • 343
  • 2
  • 9
1
vote
1 answer

AWS sts assume role - user is trusted by target role, user has sts permissions to assume target role. "User not allowed to perform assume role"

I am trying to assume a role in a different account to give me read access. The role (ROLE_IN_TARGET_ACCOUNT) has the permissions I need, however I am getting an error that my user (SOURCE_USER) is not allowed to assume the role. The…
L Xandor
  • 1,659
  • 4
  • 24
  • 48
1
vote
0 answers

Unable to make Elastic Search query across aws account through lamda

I have a simple code which makes a query to the Elastic Search cluster in a different aws account. Here is the code def get_es_client(): sts_connection = boto3.client('sts') es_gamma_act = sts_connection.assume_role( …
1
vote
0 answers

Could not fetch model of type 'Eclipseproject' using gradle distribution 'https://services.gradle.org/distributions/gradle-2.14-bin.zip'

I get this error in sts when I try to import an existing gradle project. Not able to see the gradle tasks. I have tried downloading the gradle zip files and placing them in the gradle folder. That didnt work as well. I have also tried creating new…
1
vote
0 answers

Singature is not getting validated while trying to integrate with SNS ( Trying to subscribe a sns topic )

While we are trying to subscribe one of the SNS topic we are getting signature validation failed. Basically we are calling sig.verify(Base64.getDecoder().decode(message.getSignature())); and here we are getting false as response. In result…
1 2
3
12 13