Implement Keystone environment deployments
This commit is contained in:
14
app/Enums/ServiceEndpointScope.php
Normal file
14
app/Enums/ServiceEndpointScope.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use App\Enums\Concerns\Arrayable;
|
||||
|
||||
enum ServiceEndpointScope: string
|
||||
{
|
||||
use Arrayable;
|
||||
|
||||
case DOCKER_NETWORK = 'docker_network';
|
||||
case PRIVATE_NETWORK = 'private_network';
|
||||
case PUBLIC = 'public';
|
||||
}
|
||||
Reference in New Issue
Block a user