aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--manifests/honeycomb/configure_role_mappings.pp9
1 files changed, 2 insertions, 7 deletions
diff --git a/manifests/honeycomb/configure_role_mappings.pp b/manifests/honeycomb/configure_role_mappings.pp
index 43d742b..826f6e6 100644
--- a/manifests/honeycomb/configure_role_mappings.pp
+++ b/manifests/honeycomb/configure_role_mappings.pp
@@ -28,15 +28,10 @@ define fdio::honeycomb::configure_role_mappings (
$mapping = split($interface_role_mapping, ':')
$vpp_int = regsubst($mapping[0], '/', '%2F', 'G')
$role_name = $mapping[1]
- case $role_name {
- 'tenant-interface': { $role_type = 'virtual-domain-interface' }
- 'public-interface': { $role_type = 'public-interface' }
- default: { fail("Unsupported interface role: ${role_name}") }
- }
- $config_url = "${honeycomb_url}/restconf/config/ietf-interfaces:interfaces/ietf-interfaces:interface/${vpp_int}/interface-role:roles/interface-role:role/${role_name}"
+ $config_url = "${honeycomb_url}/restconf/config/ietf-interfaces:interfaces/interface/${vpp_int}"
exec { "Register interface ${mapping[0]} with role ${role_name}":
- command => "curl -XPOST --fail -H 'Content-Type: application/json' -u ${honeycomb_username}:${honeycomb_password} ${config_url} -d \"{'role-type': '${role_type}'}\"",
+ command => "curl -XPOST --fail -H 'Content-Type: application/json' -u ${honeycomb_username}:${honeycomb_password} ${config_url} -d \"{'description': '${role_name}'}\"",
tries => 5,
try_sleep => 30,
path => '/usr/sbin:/usr/bin:/sbin:/bin',