Understanding and Security of AWS Cloud IAM Used in Practice
You can learn about IAM, the foundation of AWS Zero Trust, from the most basic elements to the most detailed specifics. Through this, you can learn which parts may actually be vulnerable and where you need to pay more attention.
444 learners
Level Basic
Course period Unlimited

Announcement of availability of GitLab id_tokens global keyword
hello.
Understanding and Securing AWS Cloud IAM in Practice - Part 1 Instructor: Cheon Kang-min.
We are happy to announce that id_tokens are now available globally starting with GitLab 16.4.
I wish it had been out there when I was making the original project, but I'm glad it's out now. The before/after changes are as follows.
[Before change]
I had to set id_tokens for each job. Therefore, I used the Anchor function in the project as follows.
.tf_base: &tf_base id_tokens: GITLAB_OIDC_TOKEN: aud: https://gitlab.com before_script: - source ./tf_base.sh # https://www.tutorialspoint.com/linux-source-command - cd ${TF_PATH} init: <<: *tf_base ...[After change]
Now, rather than being assigned per job, it can be used globally under the default keyword .
default: ... id_tokens: GITLAB_OIDC_TOKEN: aud: https://gitlab.com .tf_base: &tf_base before_script: - source ./tf_base.sh # https://www.tutorialspoint.com/linux-source-command - cd ${TF_PATH} init: <<: *tf_base ...thank you




