본문 바로가기
반응형

terraform4

[Terraform] aws eip 에러: Can't configure a value for "domain" terraform으로 eip생성하려고 공식문서에서 다음과 같이 입력하고 생성하였습니다. resource "aws_eip" "lb" { instance = aws_instance.web.id domain = "vpc" } 자동으로 이 값이 입력된다는 내용이네요 뭔가 싶어서 찾아보았습니다. (삭제하면 동작합니다.) vpc로 할당한다는 내용 이때까지만 해도 뭔 새로운 기능이 생겼나 싶었네요. https://awscli.amazonaws.com/v2/documentation/api/2.1.29/reference/ec2/allocate-address.html aws cli aws eip에 다음과 같이 할당하는 내용이 있어서 보았는데 EC2-classic 이라는 옵션이 따로 있더군요. 생각해보니 예전에 ec2가 업.. 2024. 1. 30.
[Terraform]테라폼에서 terraformer로 import후 plan 시 에러: The state file could not be read: read terraform.tfstate: The process cannot access the file because another process has locked a portion of the file. terraformer로 import한 폴더에서 terraform plan을 하니 다음과 같은 에러가 발생했다. The state file could not be read: read terraform.tfstate: The process cannot access the file because another process has locked a portion of the file. 그래서 terraform state mv 로 tfstate 정보를 다른곳에 옮겨서 plan을 해보았더니 정상적으로 동작하였다. import한것은 plan을 막아 놓은건지 아니면 terraformer에서 사용하는 상태로 적용되어 프로세스가 남아있다고 그런건지 확실하지는 않다. 2023. 8. 3.
Terraform 설치 설치방법(for windows) https://learn.hashicorp.com/tutorials/terraform/install-cli?in=terraform/aws-get-started Install Terraform | Terraform - HashiCorp Learn Install Terraform on Mac, Linux, or Windows by downloading the binary or using a package manager (Homebrew or Chocolatey). Then create a Docker container locally by following a quick-start tutorial to check that Terraform installed correctly. .. 2022. 10. 4.
Terraform 설치(windows) chocolatey를 설치합니다. 방법은 전에 포스팅했던 걸 링크로 대체합니다. https://rainbound.tistory.com/entry/Window-chocolatey-%EC%84%A4%EC%B9%98 Window chocolatey 설치 패키지 관리자가 window에 있다고해서 설치함 사용하지 않으면 웹페이지에 들어가서 다운받고 환경설정을 해줘서 shell에서 사용할수 있게 설정해야하는데 패키지 관리자를 사용하면 관리자 명령 rainbound.tistory.com 웹에서 애플리케이션받아서 설치하는 방법이 있지만 경로 설정 및 환경설정이 귀찮으므로 cmd나 power shell로 설치해보겟습니다. 앱으로 하고 싶으신분은 아래 URL에서 받으시면 됩니다. https://www.terraform.i.. 2022. 8. 22.
반응형