Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • jz_alb jz_alb
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Jira
    • Jira
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • terraform-modulesterraform-modules
  • jz_albjz_alb
  • Merge requests
  • !3

alb_tg_attachments indexed

  • Review changes

  • Download
  • Patches
  • Plain diff
Merged Seweryn Zeman requested to merge dev-tg_attach_indexed into master May 13, 2021
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 2

Description

// Usuwa:

  # module.swarm_alb.aws_lb_target_group_attachment.default[31] will be destroyed
  #                                                         ^^
  - resource "aws_lb_target_group_attachment" "default" {
      - id               = "arn:aws:elasticloadbalancing:eu-west-1:005983988219:targetgroup/abc-dev-6001-tg/f9a9a69b5b4353c6-20210420135343370700000007" -> null
      - target_group_arn = "arn:aws:elasticloadbalancing:eu-west-1:005983988219:targetgroup/abc-dev-6001-tg/f9a9a69b5b4353c6" -> null
      - target_id        = "i-0f1ef45abc193560e" -> null
    }

// Na rzecz:

  # module.swarm_alb.aws_lb_target_group_attachment.default["6001-HTTP-i-05f7dbfeeb0d9ab45"] will be created
  #                                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  + resource "aws_lb_target_group_attachment" "default" {
      + id               = (known after apply)
      + target_group_arn = "arn:aws:elasticloadbalancing:eu-west-1:005983988219:targetgroup/abc-dev-6001-tg/b4929c5efff1535e"
      + target_id        = "i-05f7dbfeeb0d9ab45"
    }

Testy

  • Sprawdzone dla istniejącej infrastruktury
  • Sprawdzone przy stawianiu nowej infrastruktury
Edited May 13, 2021 by Seweryn Zeman
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: dev-tg_attach_indexed