cancel
Showing results for 
Search instead for 
Did you mean: 

Error bei creating instance of appliance

teimurkazimov
Member
0 Kudos
163

Hello,

I am trying to create an instance of the "SAP BW/4HANA 2021 including BW/4HANA Content 2.0 SP08 - Dev Edition" appliance. After starting the creation of the instance, the instance is terminated.

It happened with all appliances I am trying to create.

What can I do to create a instance of this appliance?

With best regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

ivan_mitov
Employee
Employee
0 Kudos

Hi Teimur,

I guess your AWS IAM user is missing some KMS-related permissions. I would suggest that you follow this link https://caldocs.hana.ondemand.com/caldocs/help/AWS_FAQs.pdf and check section "How to configure your IAM user?". You should have the following inline policy configured:

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"kms:Decrypt",
"kms:Encrypt",
"kms:ReEncryptFrom",
"kms:ReEncryptTo",
"kms:DescribeKey",
"kms:CreateGrant",
"kms:GenerateDataKeyWithoutPlaintext"
],
"Resource": [
"*"
]
}
]
}

Regards,

Ivan Mitov