Cross Stack Dependencies Between Nested Stack [Stack 2 depend on Exported value from Stack 1]

0

How do i resolve Dependencies form stack 1 in stack 2 Nested Stack Based on Imported Value form Stack 1

But i keep getting Error

# Stack 1: Create S3 bucket and export its name
Resources:
  MyBucket:
    Type: AWS::S3::Bucket
    ...
  ExportBucketName:
    Value: !Ref MyBucket
    Export:
      Name: MyBucketName

# Stack 2: Create EC2 instance and reference S3 bucket
Resources:
  MyInstance:
    Type: AWS::EC2::Instance
    DependsOn: !ImportValue MyBucketName
    Properties:
      ...
      S3BucketName: !ImportValue MyBucketName
Nafiu
質問済み 9ヶ月前443ビュー
1回答
1
承認された回答

In CloudFormation, the DependsOn attribute is used to specify that the creation of a specific resource follows another. When it comes to !ImportValue, it fetches an exported value from another stack, but you can't use !ImportValue in DependsOn like you tried to do because it doesn't represent a resource but a value.

The dependency you're trying to establish doesn't make sense in the context of CloudFormation. The creation of an EC2 instance doesn't directly depend on the existence of an S3 bucket. It depends on the availability of the S3 bucket's name, which, once the S3 bucket is created and its name is exported, will always be available for import in another stack.

If you want to ensure that Stack 2 (the EC2 instance) is only deployed after Stack 1 (the S3 bucket) is successfully deployed, you need to control the deployment order outside of the CloudFormation templates themselves. This could be through a CI/CD pipeline, scripts, or manual deployment.

Your Stack 2 can be written like:

Resources: MyInstance: Type: AWS::EC2::Instance Properties: ... S3BucketName: !ImportValue MyBucketName

You don't need DependsOn: !ImportValue MyBucketName because there's no resource in Stack 2 that corresponds to the imported S3 bucket. As long as you ensure that Stack 1 is deployed before Stack 2, the value will be available for import.

To avoid errors:

  1. Ensure that Stack 1 is deployed and has successfully created the S3 bucket.
  2. Make sure that the export name in Stack 1 (MyBucketName) matches the import name in Stack 2.
  3. Only after Stack 1 is successfully deployed, deploy Stack 2.

This will make sure that when Stack 2 is deployed, it will have the S3 bucket name available for import.

回答済み 9ヶ月前
profile pictureAWS
エキスパート
レビュー済み 9ヶ月前
profile picture
エキスパート
レビュー済み 9ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ