이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Id: b8a9852c-9943-4973-b8d5-77dae9352851
Cloud Provider: AWS
Platform: Ansible
Severity: Low
Category: Build Process
Learn More
Description
EFS filesystems must have tags defined to support asset identification, tag-based access control, cost allocation, and automated lifecycle or compliance policies. For Ansible tasks using the community.aws.efs or efs modules, the tags property must be present and contain at least one key/value pair. Tasks that omit the tags property or provide an empty mapping are flagged as missing required metadata.
Secure example:
- name: Create EFS filesystem
community.aws.efs:
state: present
name: my-efs
performance_mode: generalPurpose
tags:
Name: my-efs
Environment: production
Compliant Code Examples
- name: EFS provisioning
community.aws.efs:
state: present
name: myTestEFS
tags:
Name: myTestNameTag
purpose: file-storage
targets:
- subnet_id: subnet-748c5d03
security_groups: [ "sg-1a2b3c4d" ]
Non-Compliant Code Examples
- name: EFS provisioning without tags
community.aws.efs:
state: present
name: myTestEFS
targets:
- subnet_id: subnet-748c5d03
security_groups: [ "sg-1a2b3c4d" ]