Граф зависимостей terraform
Отобразить граф зависимостей как SVG (требует graphviz)
terraform graph | dot -Tsvg > graph.svg && open graph.svg
more terraform
all 43 commands →
Список провайдеров с версиями
terraform providers lock -platform=linux_amd64 -platform=darwin_arm64
Перемещение ресурса в state
terraform state mv 'aws_instance.web' 'aws_instance.app'
Удаление осиротевшего объекта из state
terraform state rm 'aws_s3_bucket.legacy'
Просмотр state одного ресурса
terraform state show 'module.vpc.aws_subnet.private[0]'
Поиск по списку state
terraform state list | grep -i 'aws_iam'