Skip to content

feat: delete user#8868

Closed
csiyang wants to merge 23 commits intomainfrom
26-00-SC-feat-delete-user
Closed

feat: delete user#8868
csiyang wants to merge 23 commits intomainfrom
26-00-SC-feat-delete-user

Conversation

@csiyang
Copy link
Copy Markdown
Contributor

@csiyang csiyang commented Mar 17, 2026

Summary by CodeRabbit

  • New Features

    • Admin UI: new Delete User page and navigation item (super-admin only).
    • Two-step deletion workflow: Check (preview counts and logs for journeys/teams) and Confirm (perform deletion; returns success and logs).
    • Lookup by Email or Database ID; strong irreversible warning and confirmation dialog.
    • Automatic cleanup/transfer of related journeys and teams during deletion.
  • Localization

    • Added UI translations and user-facing status/messages for the deletion flow.
  • Audit

    • Deletion attempts recorded with detailed audit logs and timestamps.

@csiyang csiyang self-assigned this Mar 17, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 17, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Adds a multi-stage user deletion feature: GraphQL mutations across gateway, users, and journeys APIs for pre-check and confirm; service helpers for lookup, interop, deletion and logging; a Prisma audit model and migration; and an admin UI with check/confirm and logs.

Changes

Cohort / File(s) Summary
Gateway & Public Schema
apis/api-gateway/schema.graphql
Exports new mutation fields and public result/log types and enum for user deletion: userDeleteCheck, userDeleteConfirm, userDeleteJourneysCheck, userDeleteJourneysConfirm, UserDelete* types and UserDeleteIdType.
Journeys API — Schema & Resolvers
apis/api-journeys-modern/schema.graphql, apis/api-journeys-modern/src/schema.ts, apis/api-journeys-modern/src/schema/userDelete/*, apis/api-journeys-modern/src/schema/userDelete/types.ts
Adds userDeleteJourneysCheck and userDeleteJourneysConfirm mutations, LogEntry type and createLog helper, resolver implementations for analysis and transactional cleanup, and wires modules into the schema.
Users API — Schema & Resolvers
apis/api-users/schema.graphql, apis/api-users/src/schema.ts, apis/api-users/src/schema/userDelete/*
Adds userDeleteCheck and userDeleteConfirm mutations, UserDeleteIdType enum, GraphQL log/result types, and resolvers orchestrating lookup, journeys interop, deletion orchestration, and aggregated logs.
Users API — Service Layer
apis/api-users/src/schema/userDelete/service/*
New service modules: lookupUser, deleteUserData (Firebase + DB deletion + audit), journeysInterop (Apollo interop client + mutations), types (LogEntry/createLog), and an index re-exporting these functions/types.
Admin UI & Components
apps/journeys-admin/pages/users/delete.tsx, apps/journeys-admin/src/components/UserDelete/*, apps/journeys-admin/src/components/PageWrapper/.../UserNavigation.tsx
Adds admin Delete User page and UserDelete component (check + confirm flow, logs UI, confirmation dialog), GraphQL client mutations, translations, and a super-admin navigation link.
Database Migration & Prisma Model
libs/prisma/users/db/schema.prisma, libs/prisma/users/db/migrations/.../migration.sql, libs/prisma/users/db/migrations/migration_lock.toml
Introduces UserDeleteAuditLog Prisma model and SQL migration; small doc tweak in migration_lock.
Localization
libs/locales/en/apps-journeys-admin.json
Adds English translation keys for the user deletion UI, messages, warnings, and prompts.
Other minor wiring
apis/api-journeys-modern/src/schema/userDelete/index.ts, apis/api-users/src/schema/userDelete/index.ts, apps/journeys-admin/src/components/UserDelete/index.ts, apis/api-journeys-modern/src/schema/userDelete/*
Index files to import/register new modules and a re-export barrelling component; small schema.ts imports added to register userDelete modules.

Sequence Diagram(s)

sequenceDiagram
    participant Admin as Admin UI
    participant Gateway as API Gateway
    participant UsersAPI as Users API
    participant JourneysAPI as Journeys API
    participant DB as Database
    participant Firebase as Firebase Auth

    Admin->>Gateway: userDeleteCheck(idType, id)
    Gateway->>UsersAPI: userDeleteCheck(...)
    UsersAPI->>DB: lookup user by id/email
    DB-->>UsersAPI: user record
    UsersAPI->>JourneysAPI: callJourneysCheck(userId) [interop]
    JourneysAPI->>DB: analyze journeys/teams/related records
    DB-->>JourneysAPI: counts & analysis
    JourneysAPI-->>UsersAPI: check result + logs
    UsersAPI-->>Gateway: check result
    Gateway-->>Admin: UserDeleteCheckResult

    Admin->>Gateway: userDeleteConfirm(idType, id)
    Gateway->>UsersAPI: userDeleteConfirm(...)
    UsersAPI->>DB: lookup target user & caller
    DB-->>UsersAPI: user records
    UsersAPI->>JourneysAPI: callJourneysConfirm(userId) [interop]
    JourneysAPI->>DB: transactional deletion of journeys/teams/memberships
    DB-->>JourneysAPI: deleted IDs
    JourneysAPI-->>UsersAPI: confirm result + logs
    UsersAPI->>Firebase: delete Firebase auth user
    Firebase-->>UsersAPI: deletion status
    UsersAPI->>DB: delete user row & insert UserDeleteAuditLog
    DB-->>UsersAPI: audit saved
    UsersAPI-->>Gateway: UserDeleteResult
    Gateway-->>Admin: UserDeleteResult
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The pull request title 'feat: delete user' clearly and concisely describes the main feature addition—implementing user deletion functionality—across multiple API and UI components.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch 26-00-SC-feat-delete-user

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

Warnings
⚠️ ❗ Big PR (2200 changes)

(change count - 2200): Pull Request size seems relatively large. If Pull Request contains multiple changes, split each into separate PR will helps faster, easier review.

Generated by 🚫 dangerJS against 1765f22

@nx-cloud
Copy link
Copy Markdown

nx-cloud bot commented Mar 17, 2026

View your CI Pipeline Execution ↗ for commit 1765f22

Command Status Duration Result
nx run watch-e2e:e2e ✅ Succeeded 21s View ↗
nx run journeys-admin-e2e:e2e ✅ Succeeded 32s View ↗
nx run videos-admin-e2e:e2e ✅ Succeeded 5s View ↗
nx run journeys-e2e:e2e ✅ Succeeded 26s View ↗
nx run player-e2e:e2e ✅ Succeeded 4s View ↗
nx run resources-e2e:e2e ✅ Succeeded 16s View ↗
nx run short-links-e2e:e2e ✅ Succeeded 4s View ↗
nx run watch-modern-e2e:e2e ✅ Succeeded 4s View ↗
Additional runs (24) ✅ Succeeded ... View ↗

☁️ Nx Cloud last updated this comment at 2026-03-30 20:48:27 UTC

@github-actions github-actions bot temporarily deployed to Preview - journeys March 17, 2026 21:02 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 17, 2026 21:02 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 17, 2026 21:02 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 17, 2026 21:02 Inactive
@github-actions github-actions bot temporarily deployed to Preview - player March 17, 2026 21:02 Inactive
@github-actions github-actions bot requested a deployment to Preview - resources March 17, 2026 21:02 Pending
@github-actions github-actions bot requested a deployment to Preview - journeys-admin March 17, 2026 21:02 Pending
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
player ✅ Ready player preview Tue Mar 31 09:43:08 NZDT 2026

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
short-links ✅ Ready short-links preview Tue Mar 31 09:43:08 NZDT 2026

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
videos-admin ✅ Ready videos-admin preview Tue Mar 31 09:44:22 NZDT 2026

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
journeys ✅ Ready journeys preview Tue Mar 31 09:43:36 NZDT 2026

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
watch ✅ Ready watch preview Tue Mar 31 09:44:35 NZDT 2026

@github-actions github-actions bot temporarily deployed to Preview - player March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - resources March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - videos-admin March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - short-links March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - journeys-admin March 17, 2026 21:07 Inactive
@github-actions github-actions bot temporarily deployed to Preview - watch-modern March 17, 2026 21:07 Inactive
@stage-branch-merger
Copy link
Copy Markdown

I see you added the "on stage" label, I'll get this merged to the stage branch!

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
watch-modern ✅ Ready watch-modern preview Tue Mar 31 09:42:53 NZDT 2026

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Mar 17, 2026

The latest updates on your projects.

Name Status Preview Updated (UTC)
resources ✅ Ready resources preview Tue Mar 31 09:44:42 NZDT 2026

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
adog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.postgresql.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.datadog.data.aws_caller_identity.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.prod.module.postgresql.data.aws_region.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 1s [id=3654988094]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 1s [id=/terraform/prd/DATADOG_API_KEY]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 1s [id=/terraform/prd/DATADOG_APP_KEY]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 1s [id=jfp-ecs-task-execution-role]
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 1s [id=us-east-2]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 0s [id=2356082635]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-stage]
module.stage.module.stage.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service"
        name                               = "api-users-stage-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-users-stage:44" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-users-stage:44" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-users-stage" -> (known after apply)
      ~ container_definitions    = jsonencode(
            [
              - {
                  - cpu              = 512
                  - environment      = [
                      - {
                          - name  = "NODE_ENV"
                          - value = "production"
                        },
                      - {
                          - name  = "SERVICE_ENV"
                          - value = "stage"
                        },
                      - {
                          - name  = "SERVICE_NAME"
                          - value = "api-users"
                        },
                    ]
                  - essential        = true
                  - image            = "410965620680.dkr.ecr.us-east-2.amazonaws.com/jfp-api-users-stage:latest"
                  - logConfiguration = {
                      - logDriver     = "awsfirelens"
                      - options       = {
                          - Host        = "http-intake.logs.datadoghq.com"
                          - Name        = "datadog"
                          - TLS         = "on"
                          - compress    = "gzip"
                          - dd_service  = "api-users"
                          - dd_source   = "graphql-yoga"
                          - dd_tags     = "env:stage"
                          - provider    = "ecs"
                          - retry_limit = "2"
                        }
                      - secretOptions = [
                          - {
                              - name      = "apikey"
                              - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                            },
                        ]
                    }
                  - memory           = 1024
                  - mountPoints      = []
                  - name             = "jfp-api-users-stage-app"
                  - portMappings     = [
                      - {
                          - containerPort = 4002
                          - hostPort      = 4002
                          - protocol      = "tcp"
                        },
                    ]
                  - secrets          = [
                      - {
                          - name      = "AWS_ACCESS_KEY_ID"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/AWS_ACCESS_KEY_ID"
                        },
                      - {
                          - name      = "AWS_SECRET_ACCESS_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                      - {
                          - name      = "EXAMPLE_EMAIL_TOKEN"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN"
                        },
                      - {
                          - name      = "GATEWAY_HMAC_SECRET"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/GATEWAY_HMAC_SECRET"
                        },
                      - {
                          - name      = "GATEWAY_URL"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/GATEWAY_URL"
                        },
                      - {
                          - name      = "GOOGLE_APPLICATION_JSON"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/GOOGLE_APPLICATION_JSON"
                        },
                      - {
                          - name      = "INTEROP_TOKEN"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/INTEROP_TOKEN"
                        },
                      - {
                          - name      = "JESUS_FILM_PROJECT_VERIFY_URL"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL"
                        },
                      - {
                          - name      = "JOURNEYS_ADMIN_URL"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/JOURNEYS_ADMIN_URL"
                        },
                      - {
                          - name      = "NAT_ADDRESSES"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/NAT_ADDRESSES"
                        },
                      - {
                          - name      = "PG_DATABASE_URL_USERS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/PG_DATABASE_URL_USERS"
                        },
                      - {
                          - name      = "REDIS_PORT"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/REDIS_PORT"
                        },
                      - {
                          - name      = "REDIS_URL"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/REDIS_URL"
                        },
                      - {
                          - name      = "SMTP_URL"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-users/stage/SMTP_URL"
                        },
                    ]
                  - systemControls   = []
                  - volumesFrom      = []
                },
              - {
                  - environment       = [
                      - {
                          - name  = "DD_APM_ENABLED"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_APM_NON_LOCAL_TRAFFIC"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_DOGSTATSD_NON_LOCAL_TRAFFIC"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_LOGS_INJECTION"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_GRPC_ENDPOINT"
                          - value = "0.0.0.0:4317"
                        },
                      - {
                          - name  = "DD_OTLP_CONFIG_RECEIVER_PROTOCOLS_HTTP_ENDPOINT"
                          - value = "0.0.0.0:4318"
                        },
                      - {
                          - name  = "DD_PROCESS_AGENT_ENABLED"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_PROFILING_ENABLED"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_RUNTIME_METRICS_ENABLED"
                          - value = "true"
                        },
                      - {
                          - name  = "DD_TAGS"
                          - value = "env:stage app:api-users"
                        },
                      - {
                          - name  = "DD_TRACE_ANALYTICS_ENABLED"
                          - value = "true"
                        },
                      - {
                          - name  = "ECS_FARGATE"
                          - value = "true"
                        },
                    ]
                  - essential         = true
                  - image             = "public.ecr.aws/datadog/agent:latest"
                  - logConfiguration  = {
                      - logDriver = "awslogs"
                      - options   = {
                          - awslogs-group         = "api-users-stage-logs"
                          - awslogs-region        = "us-east-2"
                          - awslogs-stream-prefix = "core"
                        }
                    }
                  - memoryReservation = 128
                  - mountPoints       = []
                  - name              = "jfp-api-users-stage-datadog-agent"
                  - portMappings      = [
                      - {
                          - containerPort = 4317
                          - hostPort      = 4317
                          - protocol      = "tcp"
                        },
                      - {
                          - containerPort = 4318
                          - hostPort      = 4318
                          - protocol      = "tcp"
                        },
                      - {
                          - containerPort = 8125
                          - hostPort      = 8125
                          - protocol      = "udp"
                        },
                    ]
                  - secrets           = [
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls    = []
                  - volumesFrom       = []
                },
              - {
                  - environment           = []
                  - essential             = true
                  - firelensConfiguration = {
                      - options = {
                          - config-file-type        = "file"
                          - config-file-value       = "/fluent-bit/configs/parse-json.conf"
                          - enable-ecs-log-metadata = "true"
                        }
                      - type    = "fluentbit"
                    }
                  - image                 = "amazon/aws-for-fluent-bit:stable"
                  - logConfiguration      = {
                      - logDriver = "awslogs"
                      - options   = {
                          - awslogs-group         = "api-users-stage-logs"
                          - awslogs-region        = "us-east-2"
                          - awslogs-stream-prefix = "core"
                        }
                    }
                  - memoryReservation     = 100
                  - mountPoints           = []
                  - name                  = "jfp-api-users-stage-log-router"
                  - portMappings          = []
                  - systemControls        = []
                  - user                  = "0"
                  - volumesFrom           = []
                },
            ]
        ) -> (known after apply) # forces replacement
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-users-stage" -> (known after apply)
      ~ revision                 = 44 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"] will be created
  + resource "aws_ssm_parameter" "parameters" {
      + arn            = (known after apply)
      + data_type      = (known after apply)
      + has_value_wo   = (known after apply)
      + id             = (known after apply)
      + insecure_value = (known after apply)
      + key_id         = (known after apply)
      + name           = "/ecs/api-users/stage/PG_DATABASE_URL_JOURNEYS"
      + overwrite      = true
      + region         = "us-east-2"
      + tags           = {
          + "name" = "PG_DATABASE_URL_JOURNEYS"
        }
      + tags_all       = {
          + "name" = "PG_DATABASE_URL_JOURNEYS"
        }
      + tier           = (known after apply)
      + type           = "SecureString"
      + value          = (sensitive value)
      + value_wo       = (write-only attribute)
      + version        = (known after apply)
    }

Plan: 3 to add, 5 to change, 3 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "PG_DATABASE_URL_JOURNEYS"
│ 
│ The given key does not identify an element in this collection value.
╵

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

Show Output
running 'sh -c' '/home/atlantis/.atlantis/bin/terraform1.14.7 plan -input=false -refresh -out "/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure/default.tfplan"' in '/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure': exit status 1
module.datadog.module.datadog_log_forwarder.null_resource.this[0]: Refreshing state... [id=1348949428305402538]
module.prod.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.postgresql.random_password.password: Refreshing state... [id=none]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-prod]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_elb_service_account.main: Reading...
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 0s [id=/terraform/prd/DATADOG_APP_KEY]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z09188583TUYV562FI49B]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.postgresql.data.aws_region.current: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_MEDIA_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_JOURNEYS_STAGE_TOKEN]
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.datadog.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-prod-logs]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.prod.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 0s [id=3654988094]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Reading...
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 0s [id=Z09188583TUYV562FI49B]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.acm_central_jesusfilm_org.aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.route53_jesusfilm_org_zone.aws_route53_zone.zone: Refreshing state... [id=Z0668749326BRARLJYJTJ]
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Reading...
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 1s [id=/terraform/prd/DATADOG_API_KEY]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.postgresql.data.aws_region.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_PROD_TOKEN]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.module.stage.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-stage]
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Reading...
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_STAGE_TOKEN]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 0s [id=2356082635]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-a

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
lb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-stage]
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.p

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
arameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

Plan: 1 to add, 4 to change, 2 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "GATEWAY_URL"
│ 
│ The given key does not identify an element in this collection value.
╵

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

Show Output
running 'sh -c' '/home/atlantis/.atlantis/bin/terraform1.14.7 plan -input=false -refresh -out "/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure/default.tfplan"' in '/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure': exit status 1
module.datadog.module.datadog_log_forwarder.null_resource.this[0]: Refreshing state... [id=1348949428305402538]
module.prod.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.route53_jesusfilm_org_zone.aws_route53_zone.zone: Refreshing state... [id=Z0668749326BRARLJYJTJ]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-stage]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_STAGE_TOKEN]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.prod.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-prod-logs]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 0s [id=/terraform/prd/DATADOG_APP_KEY]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 0s [id=3654988094]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_STAGE_TOKEN]
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.acm_central_jesusfilm_org.aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z09188583TUYV562FI49B]
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.postgresql.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 1s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 1s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_STAGE_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-prod]
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.postgresql.data.aws_region.current: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.datadog.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 1s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_PROD_TOKEN]
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 1s [id=us-east-2]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 0s [id=2356082635]
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-stage]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing stat

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
e... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

Plan: 1 to add, 4 to change, 2 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "GATEWAY_URL"
│ 
│ The given key does not identify an element in this collection value.
╵

@blacksmith-sh

This comment has been minimized.

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

Show Output
running 'sh -c' '/home/atlantis/.atlantis/bin/terraform1.14.7 plan -input=false -refresh -out "/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure/default.tfplan"' in '/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure': exit status 1
module.prod.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.postgresql.random_password.password: Refreshing state... [id=none]
module.datadog.module.datadog_log_forwarder.null_resource.this[0]: Refreshing state... [id=1348949428305402538]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_STAGE_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_PROD_TOKEN]
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z09188583TUYV562FI49B]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 1s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 1s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 1s [id=us-east-2]
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.postgresql.data.aws_region.current: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.prod.data.aws_elb_service_account.main: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-stage]
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_caller_identity.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 0s [id=/terraform/prd/DATADOG_APP_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.acm_central_jesusfilm_org.aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 0s [id=3654988094]
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Read complete after 1s [id=2690255455]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 1s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 1s [id=us-east-2]
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.prod.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-prod]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.postgresql.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.route53_jesusfilm_org_zone.aws_route53_zone.zone: Refreshing state... [id=Z0668749326BRARLJYJTJ]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_STAGE_TOKEN]
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-prod-logs]
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 1s [id=us-east-2]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 0s [id=2356082635]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
AllowS3InternalALBLogs-stage]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 1s [id=ami-00d5df450a80fd301]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

Plan: 1 to add, 4 to change, 2 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "GATEWAY_URL"
│ 
│ The given key does not identify an element in this collection value.
╵

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

Show Output
running 'sh -c' '/home/atlantis/.atlantis/bin/terraform1.14.7 plan -input=false -refresh -out "/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure/default.tfplan"' in '/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure': exit status 1
module.prod.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.postgresql.random_password.password: Refreshing state... [id=none]
module.datadog.module.datadog_log_forwarder.null_resource.this[0]: Refreshing state... [id=1348949428305402538]
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-prod]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.postgresql.data.aws_region.current: Reading...
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_STAGE_TOKEN]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.route53_jesusfilm_org_zone.aws_route53_zone.zone: Refreshing state... [id=Z0668749326BRARLJYJTJ]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.acm_central_jesusfilm_org.aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_PROD_TOKEN]
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-prod-logs]
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.postgresql.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 0s [id=/terraform/prd/DATADOG_APP_KEY]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-rds-enhanced-monitoring-forwarder]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_STAGE_TOKEN]
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z09188583TUYV562FI49B]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.prod.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 1s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Reading...
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-stage]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.stage.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-stage]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 0s [id=3654988094]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 0s [id=2356082635]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9eb

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
b-5a66f8547fb3]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 1s [id=ami-00d5df450a80fd301]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-stage]
module.stage.module.stage.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

Plan: 1 to add, 4 to change, 2 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "GATEWAY_URL"
│ 
│ The given key does not identify an element in this collection value.
╵

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

cannot run "plan": the default workspace at path infrastructure is currently locked for this pull request by "plan".
Wait until the previous command is complete and try again

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Error

Show Output
running 'sh -c' '/home/atlantis/.atlantis/bin/terraform1.14.7 plan -input=false -refresh -out "/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure/default.tfplan"' in '/home/atlantis/.atlantis/repos/JesusFilm/core/8868/default/infrastructure': exit status 1
module.prod.module.postgresql.random_password.password: Refreshing state... [id=none]
module.stage.module.postgresql.random_password.password: Refreshing state... [id=none]
module.datadog.module.datadog_log_forwarder.null_resource.this[0]: Refreshing state... [id=1348949428305402538]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.acm_central_jesusfilm_org.aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.data.aws_iam_role.ecs_task_execution_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Reading...
module.stage.data.aws_ssm_parameter.doppler_arclight_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_STAGE_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.data.aws_ssm_parameter.doppler_core_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_arclight_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_ARCLIGHT_PROD_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_core_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CORE_STAGE_TOKEN]
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-08eeff0fe23f23079]
module.stage.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.datadog.module.datadog_log_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Reading...
module.prod.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.stage.module.stage.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-rds-enhanced-monitoring-forwarder]
module.stage.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.data.aws_ssm_parameter.doppler_cms_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_STAGE_TOKEN]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-gateway.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.aws_acm_certificate.stage: Refreshing state... [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-stage-logs]
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-gateway.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.data.aws_ssm_parameter.datadog_app_key: Reading...
module.stage.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/573666ef-f89a-42e6-85f5-4d4ea6fd29e4]
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_users_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_STAGE_TOKEN]
module.datadog.data.aws_ssm_parameter.datadog_app_key: Read complete after 0s [id=/terraform/prd/DATADOG_APP_KEY]
module.prod.module.cms.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.datadog.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Reading...
module.stage.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-stage]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_journeys_admin_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_STAGE_TOKEN]
module.stage.module.api-users.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.module.journeys-admin.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.stage.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-stage]
module.stage.module.stage.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-stage]
module.prod.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.stage.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-03c8a49c258182bda]
module.datadog.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.eks.aws_iam_role.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.stage.module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Reading...
module.prod.module.prod.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.data.aws_ssm_parameter.doppler_api_gateway_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_GATEWAY_PROD_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.iam.data.aws_iam_policy_document.assume_role_policy: Read complete after 0s [id=1077804475]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_gateway_stage_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_GATEWAY_STAGE_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 1s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.route53_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z06687872LMUIKS0Y291P]
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.stage.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_log_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.postgresql.data.aws_region.current: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.prod.module.ecs.aws_iam_role.ecs_task_role: Refreshing state... [id=terraform-ecs-task-role-prod]
module.stage.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.stage.module.stage.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.route53_jesusfilm_org_zone.aws_route53_zone.zone: Refreshing state... [id=Z0668749326BRARLJYJTJ]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.prod.module.prod.module.ecs.aws_ecs_cluster.ecs_cluster: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:cluster/jfp-ecs-cluster-prod]
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Reading...
data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
module.prod.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.eks.aws_iam_role.eks-cluster: Refreshing state... [id=terraform-eks-cluster-prod]
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.prod.module.api-languages.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.module.api-media.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Reading...
module.datadog.module.datadog_log_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_journeys_admin_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_JOURNEYS_ADMIN_PROD_TOKEN]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_media_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_STAGE_TOKEN]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.data.aws_canonical_user_id.this: Read complete after 0s [id=671441fa3ae7772d6a858b84aea1720a5b116c6144f8b7798a9b0311493454a0]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Reading...
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Reading...
module.stage.module.stage.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.stage.module.ecs.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.stage.module.stage.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Reading...
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Reading...
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Reading...
module.prod.module.prod.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.data.aws_iam_role.ecs_task_execution_role: Read complete after 0s [id=jfp-ecs-task-execution-role]
module.prod.module.arclight.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.cloudflared_prod_token: Read complete after 0s [id=/terraform/prd/CLOUDFLARED_PROD_TOKEN]
module.prod.module.prod.module.vpc.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.stage.module.bastion.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Reading...
module.stage.module.postgresql.data.aws_region.current: Reading...
module.stage.module.postgresql.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Reading...
module.datadog.data.aws_iam_policy_document.datadog_aws_integration: Read complete after 0s [id=3654988094]
module.prod.module.api-analytics.module.ecs-task.data.aws_caller_identity.current: Read complete after 1s [id=410965620680]
module.prod.module.prod.data.aws_acm_certificate.acm_core_stage_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.journeys-admin.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 1s [id=terraform-ecs-task-role-prod]
module.stage.data.aws_ssm_parameter.cloudflared_stage_token: Read complete after 1s [id=/terraform/prd/CLOUDFLARED_STAGE_TOKEN]
module.prod.module.prod.data.aws_acm_certificate.acm_core_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Reading...
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Reading...
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Reading...
module.stage.module.api-media.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Reading...
module.prod.data.aws_ssm_parameter.doppler_cms_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_CMS_PROD_TOKEN]
module.stage.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 1s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-media.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.data.aws_ssm_parameter.doppler_api_journeys_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_STAGE_TOKEN]
module.stage.data.aws_ssm_parameter.doppler_api_languages_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_STAGE_TOKEN]
module.prod.data.aws_acm_certificate.acm_central_jesusfilm_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/d04ef60d-8bb6-4dc9-aeac-19966740323a]
module.prod.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
data.aws_ssm_parameter.doppler_api_users_prod_token: Reading...
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Reading...
module.prod.module.prod.module.vpc.aws_vpc.vpc: Refreshing state... [id=vpc-0b722b0a1f7789afd]
module.stage.module.api-languages.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.prod.module.vpc.aws_eip.eip: Refreshing state... [id=eipalloc-05b19f48c45e89c28]
module.prod.data.aws_ssm_parameter.doppler_api_journeys_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_JOURNEYS_PROD_TOKEN]
data.aws_ssm_parameter.doppler_api_users_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_USERS_PROD_TOKEN]
module.stage.module.stage.data.aws_elb_service_account.main: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.public_ssh_key: Read complete after 0s [id=/terraform/prd/SSH_TUNNEL_PUBLIC_KEY]
module.stage.module.stage.data.aws_elb_service_account.main: Read complete after 0s [id=033677994240]
module.stage.module.cms.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.module.api-journeys.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-prod]
module.stage.module.api-analytics.module.ecs-task.data.aws_iam_role.ecs_task_role: Read complete after 0s [id=terraform-ecs-task-role-stage]
module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 1s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.stage.module.cms.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Reading...
module.stage.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_zone.sub_zone: Refreshing state... [id=Z09188583TUYV562FI49B]
module.stage.module.postgresql.data.aws_iam_policy_document.rds_enhanced_monitoring: Read complete after 0s [id=76086537]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Reading...
module.prod.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.data.aws_acm_certificate.acm_arc_gt: Reading...
module.prod.module.datadog_aurora.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.stage.module.cloudflared.data.aws_ssm_parameter.datadog_api_key: Read complete after 0s [id=/terraform/prd/DATADOG_API_KEY]
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Reading...
module.stage.data.aws_route53_zone.route53_stage_central_jesusfilm_org: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.prod.data.aws_ssm_parameter.doppler_api_media_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_MEDIA_PROD_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Reading...
module.stage.data.aws_acm_certificate.acm_nextstep_is: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Reading...
module.prod.module.arclight.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.prod.data.aws_acm_certificate.acm_arclight_org: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.data.aws_ssm_parameter.doppler_api_analytics_stage_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_STAGE_TOKEN]
module.prod.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Reading...
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Reading...
module.prod.data.aws_ssm_parameter.doppler_api_analytics_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_ANALYTICS_PROD_TOKEN]
module.stage.module.api-analytics.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Reading...
data.aws_ssm_parameter.doppler_api_languages_prod_token: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.data.aws_iam_policy_document.this: Read complete after 0s [id=2690255455]
module.prod.module.bastion.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=bastion-prod-logs]
module.prod.module.api-users.module.ecs-task.data.aws_region.current: Read complete after 0s [id=us-east-2]
module.prod.module.cms.module.ecs-task.data.aws_caller_identity.current: Read complete after 0s [id=410965620680]
module.acm_central_jesusfilm_org.aws_acm_certificate_validation.main: Refreshing state... [id=2022-10-08 00:11:33.892 +0000 UTC]
module.stage.aws_acm_certificate_validation.stage: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
module.prod.data.aws_acm_certificate.acm_arc_gt: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.data.aws_route53_zone.route53_central_jesusfilm_org: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
data.aws_ssm_parameter.doppler_api_languages_prod_token: Read complete after 0s [id=/terraform/prd/DOPPLER_API_LANGUAGES_PROD_TOKEN]
module.stage.data.aws_acm_certificate.acm_nextstep_is: Read complete after 0s [id=arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958554900000001]
module.prod.module.prod.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-stage-20240618010958621500000002]
module.prod.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-prod]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-prod-20240604203258707200000004]
module.prod.module.prod.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-prod-20240604203258602900000003]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-prod-20240604203258776100000005]
module.stage.module.eks.aws_iam_instance_profile.eks-node: Refreshing state... [id=terraform-eks-node-stage]
module.iam.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=jfp-ecs-task-execution-role]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKS_CNI_Policy: Refreshing state... [id=terraform-eks-node-stage-20240618010958924100000005]
module.stage.module.stage.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0264cb98228183bd7]
module.stage.module.stage.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0fa32f881733b4887]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-01f4e86883462b5ce]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-062de12e3e3639eff]
module.stage.module.stage.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-09cbfc19be5214a8b]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-03bd7850c8bbe2ce9]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-0a609b33cdac65789]
module.stage.module.stage.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0c394639d255c3261]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEKSWorkerNodePolicy: Refreshing state... [id=terraform-eks-node-stage-20240618010958833200000004]
module.stage.module.stage.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-044e23e20145c6192]
module.prod.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001]
module.stage.module.eks.aws_iam_role_policy_attachment.eks-node-AmazonEC2ContainerRegistryReadOnly: Refreshing state... [id=terraform-eks-node-stage-20240618010958734500000003]
module.datadog.module.datadog_log_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.postgresql.data.aws_availability_zones.current: Reading...
module.stage.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-stage-keypair]
module.stage.module.stage.aws_s3_bucket.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.prod.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-prod-keypair]
module.stage.module.stage.aws_s3_bucket.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSServicePolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258482100000002]
module.prod.module.eks.aws_iam_role_policy_attachment.eks-cluster-AmazonEKSClusterPolicy: Refreshing state... [id=terraform-eks-cluster-prod-20240604203258411200000001]
module.stage.module.bastion.aws_key_pair.default: Refreshing state... [id=bastion-stage-keypair]
module.stage.module.postgresql.data.aws_availability_zones.current: Reading...
module.datadog.aws_iam_policy.datadog_aws_integration: Refreshing state... [id=arn:aws:iam::410965620680:policy/DatadogAWSIntegrationPolicy]
module.prod.module.cloudflared.aws_key_pair.default: Refreshing state... [id=cloudflared-prod-keypair]
module.stage.module.postgresql.aws_iam_role.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001]
module.stage.module.postgresql.data.aws_availability_zones.current: Read complete after 0s [id=us-east-2]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[0]: Refreshing state... [id=subnet-0b7c1e14af0ffb3ea]
module.prod.module.prod.module.vpc.aws_internet_gateway.igw: Refreshing state... [id=igw-0685fc79e5537c278]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[1]: Refreshing state... [id=subnet-05c389158df4b940a]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[0]: Refreshing state... [id=subnet-036663ddfdb3b94b0]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[1]: Refreshing state... [id=subnet-01aa708571a3e499c]
module.prod.module.prod.module.vpc.aws_subnet.public_subnet[2]: Refreshing state... [id=subnet-0aa10af01283bbcdb]
module.prod.module.prod.module.vpc.aws_subnet.internal_subnet[2]: Refreshing state... [id=subnet-02f4c2a33ace122c5]
module.prod.module.prod.module.vpc.aws_route_table.public_route_table: Refreshing state... [id=rtb-0dc12928458ea9cdb]
module.prod.module.prod.module.vpc.aws_route_table.internal_route_table: Refreshing state... [id=rtb-0d45cab94ea14e3d7]
module.datadog.datadog_integration_aws.sandbox: Refreshing state... [id=410965620680:DatadogAWSIntegrationRole]
module.stage.module.stage.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0fa32f881733b48871080289494]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy_ssm: Refreshing state... [id=jfp-ecs-task-execution-role-20221118071642587800000001]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-051892314a7000003]
module.iam.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=jfp-ecs-task-execution-role-20221008000653987100000004]
module.stage.module.stage.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=stage]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-0b75a83bd37e525cd]
module.stage.module.stage.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-0a407e12605c11226]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-03da4c2598c115115]
module.stage.module.stage.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-0f4fff5ac1abacfcf]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-0e48ad8d3569bd81c]
module.stage.module.stage.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-090125278afb83cac]
module.datadog.module.datadog_log_forwarder.aws_iam_policy.this[0]: Refreshing state... [id=arn:aws:iam::410965620680:policy/datadog-log-forwarder]
module.stage.module.route53_stage_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z06687872LMUIKS0Y291P_stage.central.jesusfilm.org_NS]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.prod.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.prod.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240604195421524100000001-20240604195422629200000002]
module.stage.aws_route53_record.acm_validation["*.stage.central.jesusfilm.org"]: Refreshing state... [id=Z09188583TUYV562FI49B__d2c387d3e9303ced4223f07e5920ab27.stage.central.jesusfilm.org._CNAME]
module.stage.module.stage.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z056780738DT3AZL6A4WD]
module.stage.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.stg.PG_PASSWORD]
module.prod.module.postgresql.doppler_secret.rds_password: Refreshing state... [id=core.prd.PG_PASSWORD]
module.stage.module.stage.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-03cc96cd8ea27c503]
module.stage.module.stage.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-030e79e5f9dcbb65c]
module.stage.module.postgresql.aws_iam_role_policy_attachment.rds_enhanced_monitoring: Refreshing state... [id=rds-enhanced-monitoring-20240618004751940300000001-20240618004753031000000002]
module.stage.module.stage.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0675e4b5fed8634e2]
module.stage.module.stage.aws_s3_bucket_policy.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-025da116869428a47]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_public_access_block.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_ownership_controls.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_policy.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_server_side_encryption_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Reading...
module.stage.module.stage.aws_s3_bucket_lifecycle_configuration.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.datadog.data.aws_iam_policy_document.datadog_aws_integration_assume_role: Read complete after 1s [id=2356082635]
module.prod.module.prod.module.vpc.aws_route.public_route: Refreshing state... [id=r-rtb-0dc12928458ea9cdb1080289494]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[1]: Refreshing state... [id=rtbassoc-0374258f2bc8b3de8]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder-20230929222435825800000001]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[0]: Refreshing state... [id=rtbassoc-0a2be20c6e23f54d7]
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-rds-enhanced-monitoring-forwarder]
module.prod.module.prod.module.vpc.aws_route_table_association.public_route_association[2]: Refreshing state... [id=rtbassoc-058e84cc582b88a44]
module.prod.module.prod.module.vpc.aws_nat_gateway.nat_gateway: Refreshing state... [id=nat-05d6db4947a8ebb96]
module.prod.module.prod.module.vpc.aws_db_subnet_group.default: Refreshing state... [id=prod]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[2]: Refreshing state... [id=rtbassoc-0d1c5f0b5a16290a7]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[1]: Refreshing state... [id=rtbassoc-095dfe643ae6e7eda]
module.prod.module.prod.module.vpc.aws_route_table_association.internal_route_association[0]: Refreshing state... [id=rtbassoc-09640730571f937b3]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.acm_central_jesusfilm_org.aws_route53_record.acm_validation["*.central.jesusfilm.org"]: Refreshing state... [id=Z06687872LMUIKS0Y291P__c4a5ee1cf50eb2f9c970abafeebc25bd.central.jesusfilm.org._CNAME]
module.stage.module.stage.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-044e23e20145c61921080289494]
module.datadog.module.datadog_log_forwarder.aws_iam_role_policy_attachment.this[0]: Refreshing state... [id=datadog-log-forwarder-20231002062726430500000001]
module.route53_central_jesusfilm_org.aws_route53_record.zone_ns: Refreshing state... [id=Z0668749326BRARLJYJTJ_central.jesusfilm.org_NS]
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.prod.module.public_bastion_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0a88e0c38bb4aaf3b]
module.prod.module.prod.module.route53_private_zone.aws_route53_zone.private_zone: Refreshing state... [id=Z03223152FHL8WN66TI5X]
module.prod.module.prod.module.internal_rds_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0b9f71dd648b7ccdd]
module.prod.module.prod.module.internal_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0df57c5d60e98f826]
module.prod.module.prod.module.public_alb_security_group.aws_security_group.security_group: Refreshing state... [id=sg-0faeff191a6658741]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.aws_iam_role.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole]
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.prod.module.vpc.aws_route.internal_route: Refreshing state... [id=r-rtb-0d45cab94ea14e3d71080289494]
module.stage.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-RDSCloudWatchLogsPermission]
module.prod.module.api-gateway.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-gateway-stage.module.ecs-task.data.doppler_secrets.app: Read complete after 0s [id=.]
module.stage.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_rds_enhanced_monitoring_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-rds-enhanced-monitoring-forwarder]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_versioning.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_server_side_encryption_configuration.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.arclight.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Reading...
module.datadog.module.datadog_log_forwarder.module.this_s3_bucket.aws_s3_bucket_public_access_block.this[0]: Refreshing state... [id=datadog-forwarder-410965620680-us-east-2]
module.stage.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-users.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.cms.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.prod.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Reading...
module.stage.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.journeys-admin.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.datadog.aws_iam_role_policy_attachment.datadog_aws_integration: Refreshing state... [id=DatadogAWSIntegrationRole-20230111213018801100000001]
module.datadog.module.datadog_log_forwarder.aws_s3_object.this[0]: Refreshing state... [id=aws-dd-forwarder-3.73.0.zip]
module.stage.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 2s [id=.]
module.prod.module.api-journeys.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.api-languages.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-journeys-modern.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.api-media.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-stage/27d94355c709eb16]
module.stage.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-038c2ad08a385bd64]
module.stage.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.stage.module.stage.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-stage/846f69021da58f87]
module.stage.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-043d232c3f46ebaf5]
module.stage.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-stage]
module.stage.module.bastion.aws_instance.bastion: Refreshing state... [id=i-0b14a9afd6a452e04]
module.prod.module.prod.module.public_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-public-alb-prod/7cf1f0916ed2c660]
module.stage.module.stage.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-087bc43a262c94bc1]
module.stage.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-099111be21033d43c]
module.prod.module.api-analytics.module.ecs-task.data.doppler_secrets.app: Read complete after 1s [id=.]
module.prod.module.prod.module.internal_alb.aws_alb.alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:loadbalancer/app/jfp-internal-alb-prod/ae1556aacf21465f]
module.stage.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-stage]
module.prod.module.redis.aws_elasticache_subnet_group.default: Refreshing state... [id=redis-subnet-group-prod]
module.prod.module.eks.aws_security_group.eks-node: Refreshing state... [id=sg-0497c37ab4c966117]
module.prod.module.eks.aws_security_group.eks-cluster: Refreshing state... [id=sg-0ac546ed7eb0f35a9]
module.stage.module.stage.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-0715e664d653ce89c]
module.prod.module.prod.module.ecs.aws_security_group.internal_security_group: Refreshing state... [id=sg-02935fccc551bacd8]
module.datadog.module.datadog_log_forwarder.aws_lambda_function.this[0]: Refreshing state... [id=datadog-log-forwarder]
module.prod.module.bastion.aws_instance.bastion: Refreshing state... [id=i-09562bf27764aac1b]
module.prod.module.prod.module.ecs.aws_security_group.public_security_group: Refreshing state... [id=sg-030c49feae781c660]
module.prod.module.cloudflared.aws_instance.ec2_cloudflared: Refreshing state... [id=i-060fcf9fba7f59734]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-3865934924]
module.prod.module.postgresql.aws_rds_cluster.default: Refreshing state... [id=jfp-core-prod]
module.stage.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-4004893998]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-self: Refreshing state... [id=sgrule-4065849382]
module.prod.module.eks.aws_security_group_rule.eks-cluster-ingress-node-https: Refreshing state... [id=sgrule-1385531442]
module.stage.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240618004835876400000003]
module.stage.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.stg.PRIVATE_DATABASE_URL]
module.stage.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/stage/PRIVATE_DATABASE_URL]
module.stage.module.stage.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/ac98de54144c43bc]
module.datadog.module.datadog_log_forwarder.aws_cloudwatch_log_group.this[0]: Refreshing state... [id=/aws/lambda/datadog-log-forwarder]
module.datadog.module.datadog_log_forwarder.aws_lambda_permission.cloudwatch[0]: Refreshing state... [id=datadog-forwarder-CloudWatchLogsPermission]
module.prod.module.postgresql.doppler_secret.new_rds_url: Refreshing state... [id=core.prd.PRIVATE_DATABASE_URL]
module.prod.module.postgresql.aws_rds_cluster_instance.default: Refreshing state... [id=tf-20240604195536182300000003]
module.prod.module.postgresql.aws_ssm_parameter.new_parameter: Refreshing state... [id=/ecs/jfp-core/prod/PRIVATE_DATABASE_URL]
module.prod.module.prod.aws_lb_listener.ssl_forwarder: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/0e6eae9863f3405a]
module.stage.module.stage.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/8e127638978261a2]
module.stage.module.stage.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6]
module.prod.module.prod.module.public_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae]
module.prod.module.prod.module.internal_alb_listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/007803e8b4e5717b]
module.stage.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-00ecd05e85640c69d]
module.stage.module.stage.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z056780738DT3AZL6A4WD_stage.internal_A]
module.prod.module.datadog_aurora.aws_instance.datadog_aurora: Refreshing state... [id=i-0a655930d06a4cfbf]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-1786535289]
module.stage.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-stage]
module.stage.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2353942872]
module.stage.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0ff8417483ad1d68b]
module.prod.module.prod.module.route53_private_zone.aws_route53_record.internal_service_record: Refreshing state... [id=Z03223152FHL8WN66TI5X_service.internal_A]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-https: Refreshing state... [id=sgrule-2408602841]
module.prod.module.eks.aws_security_group_rule.eks-node-ingress-cluster-others: Refreshing state... [id=sgrule-646725114]
module.prod.module.redis.aws_security_group.redis: Refreshing state... [id=sg-0cd8edef60f3a40ef]
module.prod.module.eks.aws_eks_cluster.this: Refreshing state... [id=jfp-eks-prod]
module.stage.module.bastion.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_bastion.stage.central.jesusfilm.org_A]
module.prod.module.bastion.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_bastion.central.jesusfilm.org_A]
module.stage.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-stage]
module.stage.module.stage.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.stage.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.stage.module.stage.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-prod]
module.stage.module.stage.aws_lambda_permis

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
sion.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-stage]
module.prod.module.prod.aws_lambda_permission.allow_s3_public_alb_logs: Refreshing state... [id=AllowS3PublicALBLogs-prod]
module.stage.module.stage.aws_lambda_permission.allow_s3_internal_alb_logs: Refreshing state... [id=AllowS3InternalALBLogs-stage]
module.prod.module.redis.aws_elasticache_replication_group.default: Refreshing state... [id=redis-prod]
module.stage.module.stage.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_stage_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/952182b7-c62b-46bb-a247-f00fa92e727c]
module.prod.module.prod.aws_lb_listener_certificate.acm_arc_gt: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/c9ec5c38-11cf-4530-a71a-a4c113b8c3b0]
module.prod.module.prod.aws_lb_listener_certificate.acm_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/586efd83-c39c-4406-aaa0-76f97e3bf1da]
module.prod.module.prod.aws_lb_listener_certificate.acm_core_arclight_org: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/d78bba0b-7cb6-43a2-9ebb-5a66f8547fb3]
module.prod.module.prod.aws_lb_listener_certificate.acm_nextstep_is: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae_arn:aws:acm:us-east-2:410965620680:certificate/f16e60b9-eb24-4929-8f32-9b5ff76cfe2c]
module.stage.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-stage:jfp-eks-node-group-2a-stage]
module.prod.module.eks.aws_eks_node_group.az_2a_ondemand: Refreshing state... [id=jfp-eks-prod:jfp-eks-node-group-2a-prod]
module.prod.module.eks.data.aws_ami.eks-worker: Reading...
module.stage.module.stage.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-stage-410965620680]
module.stage.module.stage.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-stage-410965620680]
module.prod.module.prod.aws_s3_bucket_notification.internal_alb_logs: Refreshing state... [id=jfp-internal-alb-logs-prod-410965620680]
module.stage.module.eks.data.aws_ami.eks-worker: Read complete after 0s [id=ami-00d5df450a80fd301]
module.prod.module.eks.data.aws_ami.eks-worker: Read complete after 1s [id=ami-00d5df450a80fd301]
module.prod.module.prod.aws_s3_bucket_notification.public_alb_logs: Refreshing state... [id=jfp-public-alb-logs-prod-410965620680]
module.stage.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69]
module.prod.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38]
module.stage.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566]
module.stage.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c]
module.stage.module.api-languages.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6]
module.stage.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e]
module.stage.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6]
module.prod.module.api-journeys.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6]
module.prod.module.api-analytics.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0]
module.prod.module.api-journeys-modern.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0]
module.prod.module.api-users.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe]
module.prod.module.api-media.module.alb-listener.aws_alb_listener.alb_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_PORT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_ACCOUNT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_SHORT_LINKS_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/stage/NAT_ADDRESSES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.stage.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_V3_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/stage/CORS_ORIGIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/stage/REDIS_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_REVALIDATE_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/INTEROP_TOKEN]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/SEGMIND_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/stage/UNSPLASH_ACCESS_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/stage/WATCH_URL]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_DISTRIBUTION_HASH]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/FIREBASE_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ARCLIGHT_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/stage/VERCEL_TEAM_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_API_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_ACCESS_TOKEN_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/stage/ALGOLIA_INDEX_VIDEOS]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_UGC_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/stage/CROWDIN_PROJECT_ID]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/stage/MUX_SECRET_KEY]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/stage/PG_DATABASE_URL_MEDIA]
module.stage.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/stage/CLOUDFLARE_IMAGES_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/CLOUDFLARE_UPLOAD_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/stage/NAT_ADDRESSES]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_CLIENT_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/OPEN_AI_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/FACEBOOK_APP_SECRET]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys-modern_CNAME]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_4]
module.stage.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/EXAMPLE_EMAIL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/stage/GIT_BRANCH]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_SHORTLINK_DOMAIN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_AUDIENCE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/SMTP_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_JOURNEYS_PROJECT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/FIREBASE_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAUSIBLE_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GATEWAY_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_SECRET]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/stage/REDIS_PORT]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_URL]
module.stage.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-users_CNAME]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/stage/PG_DATABASE_URL_USERS]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_PORT]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/stage/REDIS_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/stage/SMTP_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/stage/NAT_ADDRESSES]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/stage/AWS_ACCESS_KEY_ID]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/stage/JESUS_FILM_PROJECT_VERIFY_URL]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-media_CNAME]
module.stage.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/stage/INTEROP_TOKEN]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/AWS_SECRET_ACCESS_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/JOURNEYS_ADMIN_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/stage/PG_DATABASE_URL_JOURNEYS]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_6]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_CLIENT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_TENANT_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/VERCEL_TEAM_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/stage/POWER_BI_WORKSPACE_ID]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/stage/GROWTH_SPACES_URL]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/stage/PLAYWRIGHT_USER_ID_5]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/stage/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.stage.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/stage/MUX_SECRET_KEY]
module.stage.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-journeys_CNAME]
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/stage/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/stage/PLAUSIBLE_SECRET_KEY_BASE]
module.stage.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-analytics_CNAME]
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-gateway-stage.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_api-gateway_CNAME]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z056780738DT3AZL6A4WD_api-languages_CNAME]
module.stage.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z056780738DT3AZL6A4WD]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/JWT_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_GRAPH_REF]
module.stage.module.api-gateway-stage.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_URL]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/stage/ENCRYPTION_KEY]
module.stage.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z09188583TUYV562FI49B]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_PLAYBACK_SIGNING_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/TRANSFER_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/stage/API_TOKEN_SALT]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/stage/MUX_WEBHOOK_SIGNING_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/stage/ADMIN_JWT_SECRET]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/stage/MUX_ACCESS_TOKEN_ID]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/stage/MUX_SECRET_KEY]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/stage/PG_DATABASE_URL_CMS]
module.stage.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/stage/APP_KEYS]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_ENDPOINT]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_CDN_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/stage/APOLLO_KEY]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/stage/GATEWAY_HMAC_SECRET]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/stage/GOOGLE_APPLICATION_JSON]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/stage/HIVE_REGISTRY_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/stage/REDIS_PORT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_V3_URL]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ENDPOINT]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_BUCKET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/stage/WESS_API_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_INDEX_COUNTRIES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_APPLICATION_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/stage/ALGOLIA_API_KEY_LANGUAGES]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/stage/ARCLIGHT_API_KEY]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/CLOUDFLARE_R2_SECRET]
module.stage.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/stage/GATEWAY_HMAC_SECRET]
module.stage.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_cms_CNAME]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.stage.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_SECRET_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys_CNAME]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_SHORT_LINKS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_SHORT_LINKS_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["SEGMIND_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/SEGMIND_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGES_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGES_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-media/prod/NAT_ADDRESSES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_REVALIDATE_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_REVALIDATE_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_PROJECT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_PROJECT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_ACCOUNT_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_ACCOUNT_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_UGC_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_UGC_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/api-media/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CROWDIN_DISTRIBUTION_HASH"]: Refreshing state... [id=/ecs/api-media/prod/CROWDIN_DISTRIBUTION_HASH]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/FIREBASE_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEO_VARIANTS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEO_VARIANTS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_INDEX_VIDEOS]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/api-media/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/api-media/prod/MUX_SECRET_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-media/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-media/prod/INTEROP_TOKEN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["UNSPLASH_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-media/prod/UNSPLASH_ACCESS_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CORS_ORIGIN"]: Refreshing state... [id=/ecs/api-media/prod/CORS_ORIGIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-media/prod/REDIS_PORT]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/api-media/prod/ALGOLIA_API_KEY]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-media/prod/GATEWAY_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["WATCH_URL"]: Refreshing state... [id=/ecs/api-media/prod/WATCH_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-media/prod/VERCEL_TEAM_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-media/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_CUSTOM_DOMAIN"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_CUSTOM_DOMAIN]
module.prod.module.api-media.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-media/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_V3_URL"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_V3_URL]
module.prod.module.api-media.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/stage/BC_POLICY_KEY]
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-users.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.stage.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_arclight_CNAME]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/stage/BC_ACCOUNT_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/stage/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-users/prod/GATEWAY_HMAC_SECRET]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_LANGUAGES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_PORT]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/stage/REDIS_URL]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/stage/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.stage.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/stage/PG_DATABASE_URL_MEDIA]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ACCESS_KEY_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_BUCKET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_BUCKET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_APPLICATION_ID"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_APPLICATION_ID]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_COUNTRIES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_PORT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["WESS_API_TOKEN"]: Refreshing state... [id=/ecs/api-languages/prod/WESS_API_TOKEN]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-languages/prod/REDIS_URL]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_API_KEY_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_API_KEY_LANGUAGES]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_R2_ENDPOINT"]: Refreshing state... [id=/ecs/api-languages/prod/CLOUDFLARE_R2_ENDPOINT]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-languages/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ARCLIGHT_API_KEY"]: Refreshing state... [id=/ecs/api-languages/prod/ARCLIGHT_API_KEY]
module.prod.module.api-languages.module.ecs-task.aws_ssm_parameter.parameters["ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/api-languages/prod/ALGOLIA_INDEX_LANGUAGES]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-users/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JESUS_FILM_PROJECT_VERIFY_URL"]: Refreshing state... [id=/ecs/api-users/prod/JESUS_FILM_PROJECT_VERIFY_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/INTEROP_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-users/prod/PG_DATABASE_URL_USERS]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-users/prod/SMTP_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["EXAMPLE_EMAIL_TOKEN"]: Refreshing state... [id=/ecs/api-users/prod/EXAMPLE_EMAIL_TOKEN]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-users/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-users/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-users/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-users/prod/REDIS_PORT]
module.prod.module.api-users.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-users/prod/NAT_ADDRESSES]
module.prod.module.api-users.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-users_CNAME]
module.stage.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z09188583TUYV562FI49B_journeys-admin_CNAME]
module.prod.module.api-languages.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-languages_CNAME]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-languages.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/stage/COOKIE_SECRET_CURRENT]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/PRIVATE_FIREBASE_PRIVATE_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_D

Warning: Output length greater than max comment size. Continued in next comment.

@jesus-film-bot
Copy link
Copy Markdown

Continued plan output from previous comment.

Show Output
OMAIN"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GATEWAY_URL]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/stage/FORMIUM_TOKEN]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_GTM_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/LAUNCH_DARKLY_SDK_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/stage/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_GENERATIVE_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_GENERATIVE_AI_API_KEY]
module.stage.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z09188583TUYV562FI49B]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_ACCESS_KEY_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_ACCESS_KEY_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/FIREBASE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["NAT_ADDRESSES"]: Refreshing state... [id=/ecs/api-journeys/prod/NAT_ADDRESSES]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEROP_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEROP_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/CLOUDFLARE_UPLOAD_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["SMTP_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/SMTP_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_SHORTLINK_DOMAIN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_SHORTLINK_DOMAIN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/INTEGRATION_ACCESS_KEY_ENCRYPTION_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_SINGLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_6"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_TENANT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_TENANT_ID]
module.prod.module.api-media.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-media_CNAME]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TEAM_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TEAM_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-journeys-modern_CNAME]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_2"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_2]
module.stage.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-stage-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_USERS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_USERS]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-stage-tg/f8283fcf2e46f90d]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID]
module.stage.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-stage-tg/b9437ddfaa9712e6]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_3"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_3]
module.stage.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-stage-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GIT_BRANCH"]: Refreshing state... [id=/ecs/api-journeys/prod/GIT_BRANCH]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["FACEBOOK_APP_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/FACEBOOK_APP_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_ADMIN_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/JOURNEYS_ADMIN_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_5"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_5]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_WORKSPACE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_WORKSPACE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/GOOGLE_CLIENT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_CLIENT_SECRET"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_CLIENT_SECRET]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_AUDIENCE_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_AUDIENCE_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_JOURNEYS"]: Refreshing state... [id=/ecs/api-journeys/prod/PG_DATABASE_URL_JOURNEYS]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_SUMMARY_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/POWER_BI_JOURNEYS_MULTIPLE_FULL_REPORT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_JOURNEYS_PROJECT_ID"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_JOURNEYS_PROJECT_ID]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["GROWTH_SPACES_URL"]: Refreshing state... [id=/ecs/api-journeys/prod/GROWTH_SPACES_URL]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["MAILCHIMP_MARKETING_API_SERVER_PREFIX"]: Refreshing state... [id=/ecs/api-journeys/prod/MAILCHIMP_MARKETING_API_SERVER_PREFIX]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["OPEN_AI_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/OPEN_AI_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/api-journeys/prod/REDIS_PORT]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAYWRIGHT_USER_ID_4"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAYWRIGHT_USER_ID_4]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["AWS_SECRET_ACCESS_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/AWS_SECRET_ACCESS_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_API_KEY"]: Refreshing state... [id=/ecs/api-journeys/prod/PLAUSIBLE_API_KEY]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ssm_parameter.parameters["VERCEL_TOKEN"]: Refreshing state... [id=/ecs/api-journeys/prod/VERCEL_TOKEN]
module.stage.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-stage-tg/08e36721eab4736f]
module.stage.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-stage-logs]
module.stage.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-stage-tg/cf9d8bdda9dcf52e]
module.prod.module.api-analytics.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z03223152FHL8WN66TI5X_api-analytics_CNAME]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PLAUSIBLE_SECRET_KEY_BASE"]: Refreshing state... [id=/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS]
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_ANALYTICS"]: Refreshing state... [id=/ecs/api-analytics/prod/PG_DATABASE_URL_ANALYTICS]
module.stage.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-stage-tg/be8b43b0ab9e7d8e]
module.stage.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-stage-logs]
module.prod.module.api-gateway.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_api-gateway_CNAME]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-analytics.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z03223152FHL8WN66TI5X]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_GRAPH_REF"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_GRAPH_REF]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["APOLLO_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/APOLLO_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GATEWAY_HMAC_SECRET"]: Refreshing state... [id=/ecs/api-gateway/prod/GATEWAY_HMAC_SECRET]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["GOOGLE_APPLICATION_JSON"]: Refreshing state... [id=/ecs/api-gateway/prod/GOOGLE_APPLICATION_JSON]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_ENDPOINT"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_ENDPOINT]
module.prod.module.api-gateway.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_CDN_KEY"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_CDN_KEY]
module.prod.module.api-gateway.module.ecs-task.aws_ssm_parameter.parameters["HIVE_REGISTRY_TOKEN"]: Refreshing state... [id=/ecs/api-gateway/prod/HIVE_REGISTRY_TOKEN]
module.stage.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-stage-logs]
module.stage.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-stage-tg/67e1d5c015f4bfff]
module.prod.module.journeys-admin.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_journeys-admin_CNAME]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-stage-tg/66c0a0a1eb2426f2]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.stage.module.api-gateway-stage.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-stage-logs]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GTM_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GTM_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_CLIENT_EMAIL"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_CLIENT_EMAIL]
module.prod.module.journeys-admin.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_UPLOAD_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GOOGLE_CLIENT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GOOGLE_CLIENT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_CLOUDFLARE_STREAM_CUSTOMER_CODE]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_PROJECT_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_PROJECT_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_CLIENT_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_CLIENT_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECTID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECTID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["LAUNCH_DARKLY_SDK_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/LAUNCH_DARKLY_SDK_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_USER_GENERATED_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["FORMIUM_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/FORMIUM_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["JOURNEYS_REVALIDATE_ACCESS_TOKEN"]: Refreshing state... [id=/ecs/journeys-admin/prod/JOURNEYS_REVALIDATE_ACCESS_TOKEN]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FIREBASE_APP_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FIREBASE_APP_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_FORMIUM_PROJECT_SLUG"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_FORMIUM_PROJECT_SLUG]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["PRIVATE_FIREBASE_PRIVATE_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/PRIVATE_FIREBASE_PRIVATE_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["COOKIE_SECRET_CURRENT"]: Refreshing state... [id=/ecs/journeys-admin/prod/COOKIE_SECRET_CURRENT]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_YOUTUBE_PLAYLIST_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_DATADOG_APPLICATION_ID"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_DATADOG_APPLICATION_ID]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_JOURNEYS_URL"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_JOURNEYS_URL]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_API_KEY"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_API_KEY]
module.prod.module.journeys-admin.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX"]: Refreshing state... [id=/ecs/journeys-admin/prod/NEXT_PUBLIC_ALGOLIA_INDEX]
module.stage.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-stage-tg/3253bc770843fe67]
module.stage.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-stage-logs]
module.stage.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-stage-tg/9801b0e48900f188]
module.prod.module.api-users.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-users-prod-tg/62172f59861c5804]
module.stage.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-stage-logs]
module.stage.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-stage-logs]
module.prod.module.api-languages.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-languages-prod-tg/f662bd85bf3c73ff]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-stage-tg/f038b11b474ddf07]
module.prod.module.api-languages.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-languages-prod-logs]
module.prod.module.api-users.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-users-prod-logs]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_ID]
module.prod.module.cms.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_cms_CNAME]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_SECRET_KEY"]: Refreshing state... [id=/ecs/cms/prod/MUX_SECRET_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_WEBHOOK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_WEBHOOK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ADMIN_JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/ADMIN_JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["API_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/API_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["ENCRYPTION_KEY"]: Refreshing state... [id=/ecs/cms/prod/ENCRYPTION_KEY]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_PLAYBACK_SIGNING_SECRET"]: Refreshing state... [id=/ecs/cms/prod/MUX_PLAYBACK_SIGNING_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["APP_KEYS"]: Refreshing state... [id=/ecs/cms/prod/APP_KEYS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["JWT_SECRET"]: Refreshing state... [id=/ecs/cms/prod/JWT_SECRET]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_CMS"]: Refreshing state... [id=/ecs/cms/prod/PG_DATABASE_URL_CMS]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["TRANSFER_TOKEN_SALT"]: Refreshing state... [id=/ecs/cms/prod/TRANSFER_TOKEN_SALT]
module.prod.module.cms.module.ecs-task.aws_ssm_parameter.parameters["MUX_ACCESS_TOKEN_ID"]: Refreshing state... [id=/ecs/cms/prod/MUX_ACCESS_TOKEN_ID]
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.cms.module.ecs-task.data.aws_route53_zone.zone: Read complete after 1s [id=Z06687872LMUIKS0Y291P]
module.prod.module.api-journeys.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-prod-tg/eab635e76d16d9d8]
module.prod.module.api-journeys.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-prod-logs]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Reading...
module.prod.module.api-journeys-modern.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-journeys-modern-prod-logs]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_MEDIA"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_MEDIA]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["PG_DATABASE_URL_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/PG_DATABASE_URL_LANGUAGES]
module.prod.module.arclight.module.ecs-task.data.aws_route53_zone.zone: Read complete after 0s [id=Z06687872LMUIKS0Y291P]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_ACCOUNT_ID"]: Refreshing state... [id=/ecs/arclight/prod/BC_ACCOUNT_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["CLOUDFLARE_IMAGE_ACCOUNT"]: Refreshing state... [id=/ecs/arclight/prod/CLOUDFLARE_IMAGE_ACCOUNT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["BC_POLICY_KEY"]: Refreshing state... [id=/ecs/arclight/prod/BC_POLICY_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_GATEWAY_URL"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_GATEWAY_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_APP_ID"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_APP_ID]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_URL"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_URL]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_MUX_DEFAULT_REPORTING_KEY]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_VIDEOS]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_COUNTRIES]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["REDIS_PORT"]: Refreshing state... [id=/ecs/arclight/prod/REDIS_PORT]
module.prod.module.arclight.module.ecs-task.aws_ssm_parameter.parameters["NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES"]: Refreshing state... [id=/ecs/arclight/prod/NEXT_PUBLIC_ALGOLIA_INDEX_LANGUAGES]
module.prod.module.arclight.module.ecs-task.aws_route53_record.record: Refreshing state... [id=Z06687872LMUIKS0Y291P_arclight_CNAME]
module.stage.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-stage]
module.prod.module.api-media.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-media-prod-logs]
module.prod.module.api-media.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-media-prod-tg/7482c4be82f35024]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-journeys-modern-prod-tg/e7c6a66de0c2ff29]
module.stage.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/cb0cf76c98f56c69/63bb0847ee74d6cf]
module.stage.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/418b774d47b90b2e/afefbfc71ceb373a]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.api-analytics.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-analytics-prod-tg/0c14a7e1e9a640f0]
module.prod.module.api-analytics.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-analytics-prod-logs]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-stage]
module.prod.module.api-gateway.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/api-gateway-prod-tg/8e98aac31a68fba7]
module.prod.module.api-gateway.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=api-gateway-prod-logs]
module.stage.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/journeys-admin-prod-tg/6aa1c516ad31ba99]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=journeys-admin-prod-logs]
module.stage.module.api-gateway-stage.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/70fb193fd1fecbd9]
module.stage.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-stage]
module.stage.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/78b1efc27e185d01]
module.stage.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/793797b631015e92]
module.stage.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-stage]
module.prod.module.api-users.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/c26ce743dd562c38/393214d0be46d152]
module.stage.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-stage/27d94355c709eb16/e976ba0cdd6d17a6/edc105209fe56999]
module.stage.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/2772aabe58647566/f5761935d552e4c6]
module.prod.module.cms.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/cms-prod-tg/558eae36912ff7d4]
module.prod.module.cms.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=cms-prod-logs]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.arclight.module.ecs-task.aws_alb_target_group.alb_target_group: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:targetgroup/arclight-prod-tg/b112722586e76658]
module.prod.module.arclight.module.ecs-task.aws_cloudwatch_log_group.ecs_cw_log_group: Refreshing state... [id=arclight-prod-logs]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-media.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-media-prod]
module.stage.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/bbe2cf245725e2e0/5159512f7454d864]
module.prod.module.api-journeys.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d5fde78dea7a53d6/f376b7543d998c45]
module.stage.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/fedc8d8232ec85b6/13fe7274ce32ff4d]
module.stage.module.api-languages.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/f8bb656979069fe6/5d55068a5abd3f17]
module.stage.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-stage/846f69021da58f87/390fbc642c8c262c/d029c6eefafa6681]
module.prod.module.api-users.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/d812a47be4e206fe/57f9b2a3e9e0d79b]
module.prod.module.api-media.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/8dd57a2792b0a37a/b885faf1d8b97520]
module.stage.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-stage]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-stage]
module.stage.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-stage]
module.prod.module.api-analytics.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-internal-alb-prod/ae1556aacf21465f/5c1cbf8d53e4cfc0/ee4e400d297efa8c]
module.stage.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-stage]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-stage]
module.prod.module.api-gateway.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/865121b01439cbfc]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-api-gateway-prod]
module.stage.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-stage]
module.stage.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-stage]
module.stage.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/4b06c3bc6bedf3a1]
module.stage.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-stage]
module.stage.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-stage]
module.prod.module.api-users.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-users-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-languages-prod]
module.prod.module.cms.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/02c9778953c343ed]
module.prod.module.arclight.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.cms.module.ecs-task.aws_ecr_repository.ecr_repository: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.arclight.module.ecs-task.aws_alb_listener_rule.alb_listener_rule: Refreshing state... [id=arn:aws:elasticloadbalancing:us-east-2:410965620680:listener-rule/app/jfp-public-alb-prod/7cf1f0916ed2c660/baff3356faf3dfae/b310a1d9152e585f]
module.prod.module.api-media.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.stage.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-analytics-prod]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-analytics-prod]
module.stage.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.stage.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.api-gateway.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-api-gateway-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-journeys-admin-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-journeys-admin-prod]
module.stage.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/arclight-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.arclight.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-arclight-prod]
module.prod.module.api-languages.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.prod.module.cms.module.ecs-task.aws_ecr_lifecycle_policy.ecr_policy: Refreshing state... [id=jfp-cms-prod]
module.prod.module.cms.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-cms-prod]
module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-modern-stage-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-journeys-stage-service]
module.prod.module.api-gateway.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-analytics-stage-service]
module.prod.module.journeys-admin.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-languages-stage-service]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/cms-stage-service]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-gateway-stage-service]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/journeys-admin-stage-service]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-languages-prod-service]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/arclight-stage-service]
module.prod.module.cms.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-media-prod-service]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-gateway-prod-service]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-analytics-prod-service]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-gateway-stage.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/journeys-admin-prod-service]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/cms-prod-service]
module.prod.module.arclight.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-arclight-prod]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-modern-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-languages.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.cms.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/arclight-prod-service]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-modern-prod-service]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.journeys-admin.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys-modern.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.arclight.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-gateway.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.prod.module.api-analytics.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-journeys-prod]
module.prod.module.api-journeys.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-prod/api-journeys-prod-service]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-prod]
module.prod.module.api-journeys.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-prod]
module.stage.module.api-users.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-users-stage]
module.stage.module.api-users.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-users-stage-service]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-users.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_task_definition.ecs_task_definition: Refreshing state... [id=jfp-api-media-stage]
module.stage.module.api-media.module.ecs-task.aws_ecs_service.ecs_service: Refreshing state... [id=arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling: Refreshing state... [id=service/jfp-ecs-cluster-stage/api-media-stage-service]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_memory: Refreshing state... [id=jfp-memory-autoscaling-stage]
module.stage.module.api-media.module.ecs-task.aws_appautoscaling_policy.ecs_policy_cpu: Refreshing state... [id=jfp-cpu-autoscaling-stage]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  ~ update in-place
  - destroy
+/- create replacement and then destroy

Terraform planned the following actions, but then encountered a problem:

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-analytics-prod-service"
        name                               = "api-analytics-prod-service"
        tags                               = {}
      ~ task_definition                    = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ecs_task_definition.ecs_task_definition must be replaced
+/- resource "aws_ecs_task_definition" "ecs_task_definition" {
      ~ arn                      = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod:9" -> (known after apply)
      ~ arn_without_revision     = "arn:aws:ecs:us-east-2:410965620680:task-definition/jfp-api-analytics-prod" -> (known after apply)
      ~ container_definitions    = jsonencode(
          ~ [
              ~ {
                    name             = "jfp-api-analytics-prod-app"
                  ~ secrets          = [
                      + {
                          + name      = "DD_API_KEY"
                          + valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                        {
                            name      = "GATEWAY_HMAC_SECRET"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/GATEWAY_HMAC_SECRET"
                        },
                        # (1 unchanged element hidden)
                        {
                            name      = "PLAUSIBLE_SECRET_KEY_BASE"
                            valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PLAUSIBLE_SECRET_KEY_BASE"
                        },
                      - {
                          - name      = "PRISMA_LOCATION_ANALYTICS"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS"
                        },
                      - {
                          - name      = "DD_API_KEY"
                          - valueFrom = "arn:aws:ssm:us-east-2:410965620680:parameter/terraform/prd/DATADOG_API_KEY"
                        },
                    ]
                  - systemControls   = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu               = 0
                    name              = "jfp-api-analytics-prod-datadog-agent"
                  - systemControls    = []
                    # (9 unchanged attributes hidden)
                },
              ~ {
                  - cpu                   = 0
                    name                  = "jfp-api-analytics-prod-log-router"
                  - systemControls        = []
                    # (10 unchanged attributes hidden)
                },
            ] # forces replacement
        )
      ~ enable_fault_injection   = false -> (known after apply)
      ~ id                       = "jfp-api-analytics-prod" -> (known after apply)
      ~ revision                 = 9 -> (known after apply)
      - tags                     = {} -> null
      ~ tags_all                 = {} -> (known after apply)
        # (12 unchanged attributes hidden)
    }

  # module.prod.module.api-analytics.module.ecs-task.aws_ssm_parameter.parameters["PRISMA_LOCATION_ANALYTICS"] will be destroyed
  # (because key ["PRISMA_LOCATION_ANALYTICS"] is not in for_each map)
  - resource "aws_ssm_parameter" "parameters" {
      - arn             = "arn:aws:ssm:us-east-2:410965620680:parameter/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - data_type       = "text" -> null
      - id              = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - key_id          = "alias/aws/ssm" -> null
      - name            = "/ecs/api-analytics/prod/PRISMA_LOCATION_ANALYTICS" -> null
      - overwrite       = true -> null
      - region          = "us-east-2" -> null
      - tags            = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tags_all        = {
          - "name" = "PRISMA_LOCATION_ANALYTICS"
        } -> null
      - tier            = "Standard" -> null
      - type            = "SecureString" -> null
      - value           = (sensitive value) -> null
      - value_wo        = (write-only attribute) -> null
      - version         = 3 -> null
        # (2 unchanged attributes hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_appautoscaling_target.service_autoscaling will be updated in-place
  ~ resource "aws_appautoscaling_target" "service_autoscaling" {
        id                 = "service/jfp-ecs-cluster-prod/api-media-prod-service"
      ~ min_capacity       = 2 -> 1
        tags               = {}
        # (8 unchanged attributes hidden)

        # (1 unchanged block hidden)
    }

  # module.prod.module.api-media.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 2 -> 1
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/api-media-prod-service"
        name                               = "api-media-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (5 unchanged blocks hidden)
    }

  # module.prod.module.arclight.module.ecs-task.aws_ecs_service.ecs_service will be updated in-place
  ~ resource "aws_ecs_service" "ecs_service" {
      ~ desired_count                      = 1 -> 2
        id                                 = "arn:aws:ecs:us-east-2:410965620680:service/jfp-ecs-cluster-prod/arclight-prod-service"
        name                               = "arclight-prod-service"
        tags                               = {}
        # (18 unchanged attributes hidden)

        # (4 unchanged blocks hidden)
    }

Plan: 1 to add, 4 to change, 2 to destroy.
╷
│ Warning: Deprecated Resource
│ 
│   with module.datadog.datadog_integration_aws.sandbox,
│   on modules/aws/datadog/main.tf line 118, in resource "datadog_integration_aws" "sandbox":
│  118: resource "datadog_integration_aws" "sandbox" {
│ 
│ **This resource is deprecated - use the `datadog_integration_aws_account`
│ resource instead**:
│ https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/integration_aws_account
╵
╷
│ Warning: Deprecated attribute
│ 
│   on .terraform/modules/datadog.datadog_log_forwarder/modules/log_forwarder/main.tf line 2, in locals:
│    2:   bucket_name = var.bucket_name != "" ? var.bucket_name : "datadog-forwarder-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
│ 
│ The attribute "name" is deprecated. Refer to the provider documentation for
│ details.
│ 
│ (and 2 more similar warnings elsewhere)
╵
╷
│ Error: Invalid index
│ 
│   on ../infrastructure/modules/aws/ecs-task/main.tf line 35, in resource "aws_ssm_parameter" "parameters":
│   35:   value     = data.doppler_secrets.app.map[each.key]
│     ├────────────────
│     │ each.key is "GATEWAY_URL"
│ 
│ The given key does not identify an element in this collection value.
╵

@jesus-film-bot
Copy link
Copy Markdown

Ran Plan for dir: infrastructure workspace: default

Plan Failed: This project is currently locked by an unapplied plan from pull #8875. To continue, delete the lock from #8875 or apply that plan and merge the pull request.

Once the lock is released, comment atlantis plan here to re-plan.

@csiyang
Copy link
Copy Markdown
Contributor Author

csiyang commented Mar 30, 2026

closing in favour of #8877

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants