@Caio Bonani
To use the flags that you mentioned in Azure Container Instances, you can try the following:
–name: You can specify the name of the container group in the YAML file under the name property. Alternatively, you can use the --name flag in the az container create command in the Azure CLI.
–network: You can specify the network configuration of the container group in the YAML file under the ipAddress property. You can set the type to either Public or Private, and the ports to the external-facing ports exposed on the container group. Alternatively, you can use the --ip-address and --ports flags in the az container create command in the Azure CLI.
–env-file: You can specify the environment variables for the container group in the YAML file under the environmentVariables property. You can set the name and value or secureValue for each variable. Alternatively, you can use the --environment-variables and --secure-environment-variables flags in the az container create command in the Azure CLI.