일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- session manager
- ec2
- terraform
- 이진탐색
- endpoint
- 인텔리제이
- Process monitoring
- binarysearch
- Python
- Docker
- SELinux비활성화
- PrivateSubnet
- Mac
- Jenkins
- Timezon설정
- 프로그래머스
- s3
- heapq
- Jenkinspipeline
- terraform main commands
- terraform 설치
- terraform 기본개념
- algorithm
- linuxr계정설정
- terraform variable
- JWT
- haproxy
- lsof
- java
- terraform backend
- Today
- Total
목록Mac (2)
MONG 기술블로그
# brew update brew update # 설치가능한 mysql 목록 확인 brew search mysql # mysql 설치 brew install mysql #We've installed your MySQL database without a root password. To secure it run: # mysql_secure_installation # #MySQL is configured to only allow connections from localhost by default # #To connect run: # mysql -u root # #To start mysql now and restart at login: # brew services start mysql #==> Summary #..

테라폼이란 HashCorp에서 개발한 오픈소스 IaC툴이며, 유저는 HCL이라는 언어를 통해 인프라를 정의하여 코드를 기반으로 인프라를 프로비저닝할 수 있다. 즉 기존에 손으로 한땀한땀 구성하던 인프라 요소들을 코드로써 구축할 수 있게 해주는 멋진 툴이다. 이제 대충은 어떤 툴인지 알게됬으니 테라폼을 설치하고 , 테라폼 구성요소에 대한 필수 기본 개념에 대해서 알아보자. ■ 테라폼 설치 ( MAC OS ) 다음 URL에 접속하면 테라폼 버전을 선택하여 다운로드할 수 있다. https://releases.hashicorp.com/terraform/ Terraform Versions | HashiCorp Releases releases.hashicorp.com 테라폼 버전을 선택하여 링크를 복사한 후 하기 ..