awslabs / aws-saas-boost

AWS SaaS Boost is a ready-to-use toolset that removes the complexity of successfully running SaaS workloads in the AWS cloud.
Apache License 2.0
961 stars 189 forks source link

Getting "build.sh: 31: read: Illegal option -a" with configuring AWS SaaS Boost for the Sample Application #365

Closed athulprathap closed 1 year ago

athulprathap commented 2 years ago

:question: General Issue

Unable to run build.sh script for deploying sample application

saaserrr

Environment

Other information

<!

Following this link. https://github.com/awslabs/aws-saas-boost/blob/main/docs/getting-started.md and executing step no -7 (Configure AWS SaaS Boost for the Sample Application) . Getting the following issue while running build.sh

athulp@IHXAIDevServer:~/saas/aws-saas-boost/samples/java$ sh build.sh Please enter your AWS SaaS Boost Environment label: dev Using region: ap-southeast-1 account: 602507601020 build.sh: 31: read: Illegal option -a dev contains 0 services: build.sh: 36: Bad substitution

-->

brtrvn commented 2 years ago

Hello @athulprathap Can you tell us what operating system and what version of Bash are your executing the build.sh script with?

athulprathap commented 2 years ago

Hi , Please find the OS and Bash version details below. Distributor ID: Ubuntu Description: Ubuntu 20.04.4 LTS Release: 20.04 Codename: focal

Bash version. $ echo "${BASH_VERSION}" 5.0.17(1)-release

PoeppingT commented 2 years ago

Hi @athulprathap , it looks like this might be due to you running the build script using sh. Can you try instead executing either bash build.sh or ./build.sh from that samples/java/ directory?

athulprathap commented 2 years ago

@PoeppingT ./build.sh ran.But getting this issue.

:~/saas/aws-saas-boost/samples/java$ ./build.sh Please enter your AWS SaaS Boost Environment label: dev Using region: ap-southeast-1 account: 270240801861 dev contains 0 services: Please enter the number of the service to upload to: 1 Uploading to

An error occurred (ValidationException) when calling the GetParameter operation: Parameter name: can't be prefixed with "ssm" (case-insensitive). If formed as a path, it can consist of sub-paths divided by slash symbol; each sub-path can be formed as a mix of letters, numbers and the following 3 symbols .-_ ./build.sh: line 45: jq: command not found Uploading to repository: Something went wrong: can't get ECR repo from Parameter Store. Exiting.

PoeppingT commented 2 years ago

Hey @athulprathap , it looks like the build.sh script is not finding any services in your SSM ParameterStore. In order to debug this failure I would need a screenshot of your SSM Parameters: you can acquire this by going to the AWS Console -> Systems Manager -> Parameter Store.

However, if you want to unblock yourself, you can execute the same thing the build script does manually. The build.sh script is actually quite simple:

  1. it finds the services by looking the Parameter Store (the same way as suggested above)
  2. for the chosen service it pulls the ECR repository (which you already have in your screenshot above)
  3. then builds the sample using mvn clean package
  4. and creates, tags, and pushes the docker image to the ECR repository using docker image build, docker tag, and docker push

More details on these commands can be found by inspecting the build.sh script yourself.

Of course, this may be a bug in our code, so we appreciate your time spent helping us debug this issue. Thanks!

athulprathap commented 2 years ago

@PoeppingT Pls find the screenshot of the parameter store. image image image

PoeppingT commented 2 years ago

@athulprathap The build.sh script lists the services existing in your account by running this command:

aws ssm get-parameters-by-path --path /saas-boost/${SAAS_BOOST_ENV}/app/ --recursive --query "Parameters[?contains(Name, 'SERVICE_JSON')].Name" | grep SERVICE_JSON | cut -d\" -f2 | rev | cut -d/ -f2 | rev | tr '\n' ' '

To aid us in debugging your particular problem, can you do the following:

  1. run this command to understand what SSM is returning to the build script: aws ssm get-parameters-by-path --path /saas-boost/dev/app/ --recursive --query "Parameters[?contains(Name, 'SERVICE_JSON')].Name"
  2. it looks like don't have jq installed: this is something required by the build.sh script. can you confirm whether the jq program exists on your system?
athulprathap commented 2 years ago

@PoeppingT Yes jq is installed pls see the out of the command.Its giving nill response image

brtrvn commented 2 years ago

It seems like you have not configured any application services. I would go back to the UI and try to fill out the application config again and submit. Make sure you wait for the CloudFormation stack update that will be triggered after you submit the form to finish before trying to run the sample app's build script.

Also, you may be effected by #372 A fix has been merged into main.

athulprathap commented 2 years ago

@PoeppingT Trying to delete the existing saas boos setup. Given the label name as 'dev'.But getting this issue.AWS CLI configurations I have verified Please select an option to continue (1-6): 5 Please enter the existing SaaS Boost environment label: dev Cannot find existing SaaS Boost environment dev in this AWS account and region.

image

image

PoeppingT commented 2 years ago

Hey @athulprathap , is your AWS CLI configured for ap-southeast-1? If the installer cannot says it cannot find an existing environment in that region, this means you do not have SSM parameters for that region. Double check the region for your AWS CLI.

athulprathap commented 2 years ago

@PoeppingT Yes AWS CLI is configured in ap-southeast-1.Is there anything we need to cross check? aws configure list Name Value Type Location


profile None None access_key **3 shared-credentials-file
secret_key **b shared-credentials-file
region ap-southeast-1 config-file ~/.aws/config

PoeppingT commented 2 years ago

Hey @athulprathap , it sounds like your SaaS Boost environment has somehow gotten into an invalid state. The best option here is to manually delete the environment. First delete all uploaded images in the ECR repository created by SaaS Boost, then Before you do so however, can you share the following information:

  1. What Parameters do you have in SSM Parameter Store for ap-southeast-1?
  2. What CloudFormation stacks do you have for ap-southeast-1?
  3. What manual changes do you have on this SaaS Boost environment, if any? What manual actions have you taken in this SaaS Boost environment (other than through the admin UI), if any?

Any errors during manual CloudFormation deletion might indicate to us what has gone wrong, but the main intention is to unblock your forward progress with SaaS Boost. Please keep us updated!

athulprathap commented 2 years ago

@PoeppingT Pls find the SSM parameters details and cloud formation details.

/saas-boost/dev/ACCESS_LOGS_BUCKET | Standard | String | Mon, 03 Oct 2022 03:21:04 GMT -- | -- | -- | --   | /saas-boost/dev/ADMIN_WEBSITE_BUCKET | Standard | String | Mon, 03 Oct 2022 03:21:30 GMT   | /saas-boost/dev/CFN_UTILS_LAYER | Standard | String | Mon, 03 Oct 2022 03:20:44 GMT   | /saas-boost/dev/CODE_PIPELINE_BUCKET | Standard | String | Mon, 03 Oct 2022 03:21:31 GMT   | /saas-boost/dev/CODE_PIPELINE_ROLE | Standard | String | Mon, 03 Oct 2022 03:25:50 GMT   | /saas-boost/dev/EGRESS_ROUTE_TABLE | Standard | String | Mon, 03 Oct 2022 03:22:00 GMT   | /saas-boost/dev/EVENT_BUS | Standard | String | Mon, 03 Oct 2022 03:20:40 GMT   | /saas-boost/dev/METRICS_ANALYTICS_DEPLOYED | Standard | String | Mon, 03 Oct 2022 03:43:14 GMT   | /saas-boost/dev/METRICS_STREAM | Standard | String | Mon, 03 Oct 2022 03:43:03 GMT   | /saas-boost/dev/ONBOARDING_APP_STACK_SNS | Standard | String | Mon, 03 Oct 2022 03:24:30 GMT   | /saas-boost/dev/ONBOARDING_STACK_SNS | Standard | String | Mon, 03 Oct 2022 03:24:30 GMT   | /saas-boost/dev/PRIVATE_API_TRUST_ROLE | Standard | String | Mon, 03 Oct 2022 03:25:11 GMT   | /saas-boost/dev/REDSHIFT_MASTER_PASSWORD | Standard | SecureString | Mon, 03 Oct 2022 03:37:12 GMT   | /saas-boost/dev/RESOURCES_BUCKET | Standard | String | Mon, 03 Oct 2022 03:26:09 GMT   | /saas-boost/dev/SAAS_BOOST_BUCKET | Standard | String | Mon, 03 Oct 2022 03:20:36 GMT   | /saas-boost/dev/SAAS_BOOST_ENVIRONMENT | Standard | String | Mon, 03 Oct 2022 03:20:37 GMT   | /saas-boost/dev/SAAS_BOOST_LAMBDAS_FOLDER | Standard | String | Mon, 03 Oct 2022 03:20:36 GMT   | /saas-boost/dev/SAAS_BOOST_STACK | Standard | String | Mon, 03 Oct 2022 03:20:36 GMT   | /saas-boost/dev/TRANSIT_GATEWAY | Standard | String | Mon, 03 Oct 2022 03:21:24 GMT   | /saas-boost/dev/TRANSIT_GATEWAY_ROUTE_TABLE | Standard | String | Mon, 03 Oct 2022 03:21:59 GMT   | /saas-boost/dev/UTILS_LAYER | Standard | String | Mon, 03 Oct 2022 03:20:43 GMT   | /saas-boost/dev/VERSION | Standard | String | Mon, 03 Oct 2022 03:20:37 GMT   | /saas-boost/dev/app/APP_NAME | Standard | String | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/BILLING_API_KEY | Standard | SecureString | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/DOMAIN_NAME | Standard | String | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/HOSTED_ZONE | Standard | String | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/SSL_CERT_ARN | Standard | String | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/main/DB_PASSWORD | Standard | SecureString | Thu, 06 Oct 2022 03:10:41 GMT   | /saas-boost/dev/app/main/SERVICE_JSON | Standard | String | Thu, 06 Oct 2022 03:13:07 GMT [/saas-boost/dev/ACCESS_LOGS_BUCKET](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/ACCESS_LOGS_BUCKET/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:21:04 GMT [/saas-boost/dev/ADMIN_WEBSITE_BUCKET](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/ADMIN_WEBSITE_BUCKET/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:21:30 GMT [/saas-boost/dev/CFN_UTILS_LAYER](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/CFN_UTILS_LAYER/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:44 GMT [/saas-boost/dev/CODE_PIPELINE_BUCKET](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/CODE_PIPELINE_BUCKET/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:21:31 GMT [/saas-boost/dev/CODE_PIPELINE_ROLE](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/CODE_PIPELINE_ROLE/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:25:50 GMT [/saas-boost/dev/EGRESS_ROUTE_TABLE](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/EGRESS_ROUTE_TABLE/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:22:00 GMT [/saas-boost/dev/EVENT_BUS](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/EVENT_BUS/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:40 GMT [/saas-boost/dev/METRICS_ANALYTICS_DEPLOYED](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/METRICS_ANALYTICS_DEPLOYED/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:43:14 GMT [/saas-boost/dev/METRICS_STREAM](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/METRICS_STREAM/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:43:03 GMT [/saas-boost/dev/ONBOARDING_APP_STACK_SNS](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/ONBOARDING_APP_STACK_SNS/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:24:30 GMT [/saas-boost/dev/ONBOARDING_STACK_SNS](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/ONBOARDING_STACK_SNS/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:24:30 GMT [/saas-boost/dev/PRIVATE_API_TRUST_ROLE](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/PRIVATE_API_TRUST_ROLE/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:25:11 GMT [/saas-boost/dev/REDSHIFT_MASTER_PASSWORD](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/REDSHIFT_MASTER_PASSWORD/description?region=ap-southeast-1&tab=Table) Standard SecureString Mon, 03 Oct 2022 03:37:12 GMT [/saas-boost/dev/RESOURCES_BUCKET](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/RESOURCES_BUCKET/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:26:09 GMT [/saas-boost/dev/SAAS_BOOST_BUCKET](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/SAAS_BOOST_BUCKET/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:36 GMT [/saas-boost/dev/SAAS_BOOST_ENVIRONMENT](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/SAAS_BOOST_ENVIRONMENT/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:37 GMT [/saas-boost/dev/SAAS_BOOST_LAMBDAS_FOLDER](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/SAAS_BOOST_LAMBDAS_FOLDER/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:36 GMT [/saas-boost/dev/SAAS_BOOST_STACK](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/SAAS_BOOST_STACK/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:36 GMT [/saas-boost/dev/TRANSIT_GATEWAY](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/TRANSIT_GATEWAY/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:21:24 GMT [/saas-boost/dev/TRANSIT_GATEWAY_ROUTE_TABLE](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/TRANSIT_GATEWAY_ROUTE_TABLE/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:21:59 GMT [/saas-boost/dev/UTILS_LAYER](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/UTILS_LAYER/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:43 GMT [/saas-boost/dev/VERSION](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/VERSION/description?region=ap-southeast-1&tab=Table) Standard String Mon, 03 Oct 2022 03:20:37 GMT [/saas-boost/dev/app/APP_NAME](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/APP_NAME/description?region=ap-southeast-1&tab=Table) Standard String Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/BILLING_API_KEY](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/BILLING_API_KEY/description?region=ap-southeast-1&tab=Table) Standard SecureString Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/DOMAIN_NAME](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/DOMAIN_NAME/description?region=ap-southeast-1&tab=Table) Standard String Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/HOSTED_ZONE](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/HOSTED_ZONE/description?region=ap-southeast-1&tab=Table) Standard String Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/SSL_CERT_ARN](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/SSL_CERT_ARN/description?region=ap-southeast-1&tab=Table) Standard String Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/main/DB_PASSWORD](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/main/DB_PASSWORD/description?region=ap-southeast-1&tab=Table) Standard SecureString Thu, 06 Oct 2022 03:10:41 GMT [/saas-boost/dev/app/main/SERVICE_JSON](https://ap-southeast-1.console.aws.amazon.com/systems-manager/parameters/saas-boost/dev/app/main/SERVICE_JSON/description?region=ap-southeast-1&tab=Table) Standard String Thu, 06 Oct 2022 03:13:07 GMT sb-dev-analytics | CREATE_COMPLETE | 2022-10-03 09:07:13 UTC+0530 | AWS SaaS Boost Analytics Module -- | -- | -- | --   | sb-dev-publicapi-1FHE7G0IKGEX9NESTED | CREATE_COMPLETE | 2022-10-03 09:02:37 UTC+0530 | AWS SaaS Boost Public API   | sb-dev-privateapi-8WGPMSMFUD2SNESTED | CREATE_COMPLETE | 2022-10-03 09:00:00 UTC+0530 | AWS SaaS Boost Private API   | sb-dev-quota-BTGT0XENLFPENESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Quota Service   | sb-dev-user-1M7RB0T9JRD9ONESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost User Service   | sb-dev-settings-1AQPZS3E1U73SNESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Settings Service   | sb-dev-onboarding-4AIPSWF6Z5AUNESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Onboarding Service   | sb-dev-metrics-1X40VWPNGBLLYNESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Metrics Service   | sb-dev-metering-1RL93AI6C5TJWNESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Metering and Billing   | sb-dev-billing-10YQIIYUD6FQ6NESTED | CREATE_COMPLETE | 2022-10-03 08:57:18 UTC+0530 | AWS SaaS Boost Billing Service   | sb-dev-tenant-LJ0OTMT927OHNESTED | CREATE_COMPLETE | 2022-10-03 08:56:08 UTC+0530 | AWS SaaS Boost Tenant Service   | sb-dev-core-BHUMX1XVJ9B0NESTED | UPDATE_COMPLETE | 2022-10-03 08:54:12 UTC+0530 | AWS SaaS Boost Core Resources   | sb-dev-web-XJTN6O8BVP8ONESTED | CREATE_COMPLETE | 2022-10-03 08:51:36 UTC+0530 | AWS SaaS Boost Admin Console   | sb-dev-tier-1RWHNRFYPPWMTNESTED | CREATE_COMPLETE | 2022-10-03 08:50:44 UTC+0530 | AWS SaaS Boost Tier Service   | sb-dev-network-1LWQ514VMSGWJNESTED | CREATE_COMPLETE | 2022-10-03 08:50:37 UTC+0530 | AWS SaaS Boost Network   | sb-dev | UPDATE_COMPLETE | 2022-10-03 08:50:29 UTC+0530 | AWS SaaS Boost [sb-dev-analytics](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-analytics%2Fab007950-42cc-11ed-9e5b-06e23cdb17aa) CREATE_COMPLETE 2022-10-03 09:07:13 UTC+0530 AWS SaaS Boost Analytics Module [sb-dev-publicapi-1FHE7G0IKGEX9](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-publicapi-1FHE7G0IKGEX9%2F05fa1330-42cc-11ed-9f5b-0ae841d13c7c) NESTED CREATE_COMPLETE 2022-10-03 09:02:37 UTC+0530 AWS SaaS Boost Public API [sb-dev-privateapi-8WGPMSMFUD2S](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-privateapi-8WGPMSMFUD2S%2Fa8b7de50-42cb-11ed-87bd-024fc1268702) NESTED CREATE_COMPLETE 2022-10-03 09:00:00 UTC+0530 AWS SaaS Boost Private API [sb-dev-quota-BTGT0XENLFPE](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-quota-BTGT0XENLFPE%2F487561c0-42cb-11ed-928f-0a267b2bbbcc) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Quota Service [sb-dev-user-1M7RB0T9JRD9O](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-user-1M7RB0T9JRD9O%2F4866bbc0-42cb-11ed-af17-065cee9f0798) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost User Service [sb-dev-settings-1AQPZS3E1U73S](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-settings-1AQPZS3E1U73S%2F4863ae80-42cb-11ed-b43e-028315378b4c) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Settings Service [sb-dev-onboarding-4AIPSWF6Z5AU](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-onboarding-4AIPSWF6Z5AU%2F484f6330-42cb-11ed-8d38-0643d1553ff4) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Onboarding Service [sb-dev-metrics-1X40VWPNGBLLY](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-metrics-1X40VWPNGBLLY%2F485f68c0-42cb-11ed-82f7-0a46e0103bb6) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Metrics Service [sb-dev-metering-1RL93AI6C5TJW](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-metering-1RL93AI6C5TJW%2F485e7e60-42cb-11ed-9ec8-06750a797eb4) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Metering and Billing [sb-dev-billing-10YQIIYUD6FQ6](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-billing-10YQIIYUD6FQ6%2F48430720-42cb-11ed-98f1-0a72c4d7c8be) NESTED CREATE_COMPLETE 2022-10-03 08:57:18 UTC+0530 AWS SaaS Boost Billing Service [sb-dev-tenant-LJ0OTMT927OH](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-tenant-LJ0OTMT927OH%2F1ea4e230-42cb-11ed-9305-06f1031abc52) NESTED CREATE_COMPLETE 2022-10-03 08:56:08 UTC+0530 AWS SaaS Boost Tenant Service [sb-dev-core-BHUMX1XVJ9B0](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-core-BHUMX1XVJ9B0%2Fd90f50c0-42ca-11ed-b047-0ab79a2b831a) NESTED UPDATE_COMPLETE 2022-10-03 08:54:12 UTC+0530 AWS SaaS Boost Core Resources [sb-dev-web-XJTN6O8BVP8O](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-web-XJTN6O8BVP8O%2F7c344220-42ca-11ed-9e94-02420a50bee2) NESTED CREATE_COMPLETE 2022-10-03 08:51:36 UTC+0530 AWS SaaS Boost Admin Console [sb-dev-tier-1RWHNRFYPPWMT](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-tier-1RWHNRFYPPWMT%2F5d65e7e0-42ca-11ed-b838-02bfffc17e4e) NESTED CREATE_COMPLETE 2022-10-03 08:50:44 UTC+0530 AWS SaaS Boost Tier Service [sb-dev-network-1LWQ514VMSGWJ](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev-network-1LWQ514VMSGWJ%2F591615c0-42ca-11ed-b8b1-065dfb5c58e2) NESTED CREATE_COMPLETE 2022-10-03 08:50:37 UTC+0530 AWS SaaS Boost Network [sb-dev](https://ap-southeast-1.console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/stackinfo?filteringStatus=active&filteringText=&viewNested=true&hideStacks=false&stackId=arn%3Aaws%3Acloudformation%3Aap-southeast-1%3A602507601020%3Astack%2Fsb-dev%2F54a3a070-42ca-11ed-b3d2-0aca0f4021aa) UPDATE_COMPLETE 2022-10-03 08:50:29 UTC+0530 AWS SaaS Boost
athulprathap commented 2 years ago

Pls let me know if we need to delete the cloud formation templates mannually.

PoeppingT commented 2 years ago

Yes @athulprathap , delete your CloudFormation stacks manually by deleting the sb-dev stack. Then, delete any remaining parameters in SSM and the leftover S3 buckets before trying to create a new environment.

PoeppingT commented 1 year ago

Hey @athulprathap , were you able to resolve this issue? If we don't hear back in the next week we'll close this issue.