Ansible Dynamic Inventory-ドットの代わりにアンダースコアを使用して、特定のタグの下のIPアドレスでインベントリを生成します
Ansibleは初めてです。ec2.py動的インベントリを使用してインベントリを生成すると、プレイブックの実行が終了した後、結果が特定のタグの下のIPアドレスのリストとして、ドットではなくアンダースコア付きで表示されます。たとえば、特定のタグが付いたインスタンスでプレイブックを実行したいのですが、他の人がどのようにIPアドレスを操作しているのでしょうか。 --- - hosts: tag_test_staging sudo: true tasks: - name: Make sure that we can connect to the machine ping: PLAY RECAP ********************************************************************* 10_80_20_47 : ok=0 changed=0 unreachable=1 failed=0 プライベートアドレスの場合、ec2.ini: hostname_variable = private_ip_address destination_variable = private_ip_address vpc_destination_variable = private_ip_address ec2.pyの結果: "tag_test_staging": [ "10_80_20_47" ], 公開アドレスの場合、ec2.ini: hostname_variable = ip_address destination_variable = …