You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The provisioner feature in Terraform allows file upload to a newly created instance which is very useful for files such as key files or other large files that are too big to be included as user_data.
The feature will require also the support of $(self.external_ip) to return the IP address of the newly created instance. Here is an example of how it's used in the aws provider:
Currently the only way to retrieve external IPs is through the /v1/instances/instance/external-ips endpoint, which returns a list of IPs. This means that using that endpoint would require users to set the index of the IP to select a single one, which would be a pretty terrible experience.
Would using host_name not be enough? If it is, then this feature is already there :)
The provisioner feature in Terraform allows file upload to a newly created instance which is very useful for files such as key files or other large files that are too big to be included as user_data.
The feature will require also the support of
$(self.external_ip)
to return the IP address of the newly created instance. Here is an example of how it's used in the aws provider:The text was updated successfully, but these errors were encountered: