«terraform» 태그된 질문

5
Terraform-개수와 함께 중첩 루프 사용
테라 폼에서 중첩 루프를 사용하려고합니다. 두 개의 목록 변수가 list_of_allowed_accounts있고 list_of_images목록 list_of_images을 반복 한 다음 목록을 반복하려고 합니다 list_of_allowed_accounts. 여기 내 테라 폼 코드가 있습니다. variable "list_of_allowed_accounts" { type = "list" default = ["111111111", "2222222"] } variable "list_of_images" { type = "list" default = ["alpine", "java", "jenkins"] } data "template_file" …
18 terraform  count 

3
지형 : 원격 상태 파일의 자격 증명 선택
Terraform에 기존 인프라가 있으며 한동안 사용하고 있습니다. 최근에 로컬 랩톱의 AWS 자격 증명 (에 저장된 자격 증명)을 교체했으며 자격 증명을 ~/.aws/credentials다시 설정할 때까지 작동이 중지되었습니다. 문제는 Terraform 소스 자체에서 cred를 선언하고 있지만 전혀 사용하지 않는 것입니다. terraform { backend "s3" { bucket = "example_tf_states" key = "global/vpc/us_east_1/example_state.tfstate" encrypt = true …
10 terraform 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.