Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support nonsensitive function #139

Open
t0yv0 opened this issue Apr 5, 2024 · 0 comments
Open

Support nonsensitive function #139

t0yv0 opened this issue Apr 5, 2024 · 0 comments
Labels
kind/enhancement Improvements or new features

Comments

@t0yv0
Copy link
Member

t0yv0 commented Apr 5, 2024

Hello!

  • Vote on this issue by adding a 馃憤 reaction
  • If you want to implement this feature, comment to let us know (we'll work with you on design, scheduling, etc.)

Issue details

Only one AWS example is affected but it is featured for a prominent resource, can be good to complete this sometime:

    data "aws_ssm_parameter" "eks_ami_release_version" {
      name = "/aws/service/eks/optimized-ami/${aws_eks_cluster.example.version}/amazon-linux-2/recommended/release_version"
    }

    resource "aws_eks_node_group" "example" {
      cluster_name    = aws_eks_cluster.example.name
      node_group_name = "example"
      version         = aws_eks_cluster.example.version
      release_version = nonsensitive(data.aws_ssm_parameter.eks_ami_release_version.value)
      node_role_arn   = aws_iam_role.example.arn
      subnet_ids      = aws_subnet.example[*].id
    }

Affected area/feature

@t0yv0 t0yv0 added kind/enhancement Improvements or new features needs-triage Needs attention from the triage team labels Apr 5, 2024
@justinvp justinvp removed the needs-triage Needs attention from the triage team label Apr 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement Improvements or new features
Projects
None yet
Development

No branches or pull requests

2 participants