Programming Programming/Iac 2022. 11. 12. EKS Cluster 생성하기 일단 위처럼 만들어 보려고 하는데 자동으로 로컬에 kubeconfig까지 떨어졌으면 좋겠어서 코드를 짜기 시작.. ################################################################################ # EKS Cluster ################################################################################ resource "aws_iam_role" "eks_cluster" { name = "EKSClusterRole_${var.cluster_name}" assume_role_policy = jsonencode({ Version = "2012-10-17" Statement = [ { E.. Programming/Iac 2022. 11. 11. Terraform Associate 공부하며 정리한 내용들 우선 공부하는데 앞서 Terraform시험을 실제 Command별 사용법을 굉장히 많이 물어본다. 여기서 핵심적인것만 찝어 보겠다. 명령어 부분 Usage: terraform [global options] [args] The available commands for execution are listed below. The primary workflow commands are given first, followed by less common or more advanced commands. Main commands: init Prepare your working directory for other commands validate Check whether the configuration is valid pla.. Programming/Iac 2022. 11. 6. Terraform Associate (002) 취득 후기 tf101 스터디를 진행하면서 한번 따볼까 생각했던 자격증 취득에 도전했다. 003으로 업데이트 되면 응시해보려 했는데 공부하는 김에 바로 보는게 좋을 것 같아서 주말에 PSI 로 응시 예약을 하고 바로 시험을 보았다. https://www.hashicorp.com/certification/terraform-associate-next HashiCorp Cloud Engineer Certification - Terraform Associate 003 (Coming Soon) Cloud engineers will be able to use either version of the Terraform Associate certification to verify their basic infrastructure au.. Programming/Java 2020. 10. 5. JVM이란? Java Source : 사용자가 작성한 Java 코드이다.(확장자 .Java) Java Compiler : Java Source 파일을 JVM이 해설학 수 있는 Java Byte Code로 변경한다. Java Byte Code : Java Compiler에 의해 수행될 결과물이다.(확장자 .class 파일) Class Loader : JVM내로 .class 파일들을 Load하여 Loding된 클래스 들을 Runtime Data Area에 배치한다. Execution Engine : Loading된 클래스의 Byte code를 해석(Interpret) 한다. Runtime Data Area : JVM이라는 프로세스가 프로그램을 수행하기 위해 OS에서 할당 받은 메모리 공간이다. Method Area : .. 이전 1 다음