Pretty new to CDK/Cloudformation, just moving from Terraform, and was wondering if CDK/Cloudformation have something similar to Terraform's remote state? Or some other way that different team members could work on updating the same AWS resources without need to destroy/recreate everything.
Related Questions in TERRAFORM
- Why does terraform aws_cognito_user_pool always show as "updated in-place" on every single terraform plan?
- Terraform - loop over complex data in data source
- Terraform cidrsubnets
- Encountered an error (ServiceUnavailable) from host runtime on Azure Function App
- Problem to add service principal permissions with terraform
- Multiple resources for the depends_on dependencies is throwing an Error
- Parametrizing backend in terraform on gcp
- AWS EKS Fargate pod scheduling issue with Prometheus deployment
- Terraform valdiate that one of N variables is set to "true"
- How to assign a value to a string variable, that includes embedded '=' in the value
- Terraform loop over Map variable to provision multiple Databricks catalogs
- Terraform OCI error when creating Network Load Balancer
- logiapp teams api connection terraform user sign in
- Difference between google_project_iam_* and other google_*_iam_* resources
- JSON representation of the current Terraform configuration
Related Questions in AWS-CLOUDFORMATION
- How to set custom Origin Name in AWS CDK for CloudFront
- Error when creating cedar template-linked policy using CloudFormation
- AWS Cloudformation: InvalidTemplateException `Every Condition member must be a string.`
- AWS lambda calling two differents SNS mixed up account ids
- How to reuse a created resource in CloudFormation
- aws :: cloudformation :: possibilities to get current userID
- Cloudformation template for creating an emr cluster with imdsv2
- Need CloudFormation Guard to skip any lines starting with !Ref when scanning Managed Policies
- AWS Cloudformation stack creation failure
- Working on a cloudformation template which creates instances in public and private subnet instances in public sub needs to call api from private
- Using CloudFormation Output as Fn::ForEach collection
- How to access cross account resources through AWS Cloudformation
- Iterating over a file in Serverless Framework
- Validation error ApiGatewayMethodProxyVarGet: expected type: Boolean, found: JSONObject in AWS CloudFormation
- AWS CDK use `dependsOn` across different .yaml templates
Related Questions in AWS-CDK
- How to set custom Origin Name in AWS CDK for CloudFront
- Using Python CDK to bundle dotnet 8 code to AWS Lambda function
- Log retation setting for ECS
- Struggling with Route53 public hosted zones in a multi-account environment
- How to get full arn when writing secret based IAM policy in AWS CDK
- AWS Step functions: DistrbituedMap itemReader get bucket and key at runtime from state input in CDK
- Encountering Deployment Error with AWS CDK: Despite Bootstrapping
- ALLOW_ADMIN_USER_PASSWORD_AUTH not getting set in AWS CDK
- JSII ProcessBuilder cannot run program
- EC2 instance being terminated after setting up lifecycle hooks
- Debugging Python AWS CDK application in VSCode
- state.Retry is not iterable
- How to get the exist cluster by name?
- CDK: Remove dependency from DependsOn
- Combining Container, AMI, and ECS builds/deployments in CDK?
Related Questions in TERRAFORM-REMOTE-STATE
- Access previous versions of Terraform state on Artifactory (remote backend type)?
- Terraform Cloud failed writing remote backend config file - error: zzz_backend_override.tf: permission denied
- Data Block in Terraform Referencing the not created State File in the first run
- In Terraform, how do I apply DiffSuppressFunc on a TypeList with each element in the list being an object following a schema?
- Github Actions with OIDC roles to deploy the resource (terraform) while accessing to the remote state file in a different AWS account S3 bucket
- How to create s3 bucket beckend and remote state with terragrunt
- Securing storage account with remote tfstate
- Terragrunt with modules of terraform using local state instead of s3 remote state
- Terraform ignoring credentials in ~/.terraformrc
- CDK/Cloudformation shared state
- How to setup terraform state on encrypted s3 bucket
- Terraform cloud run triggers with Azure
- Terraform Remote State - state file location
- Store terraform remote state file dynamic location in S3
- Terraform Remote StateFile for multiple instances of same configuration and Terraform design
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
CDK is just a "wrapper" around CloudFormation, which means that AWS stores the state and manages your resources deployed using CDK.
Terraform does not use CloudFormation, thus it has to keep its own state. Also Terraform is cloud agnostic, so it manages state without needing to rely on any cloud resources, such as CloudFormation.
So no, CDK does not have its own state in the same sense as Terraform has.